Fix GCC build: add missing #include <memory> in IacaAggregator.hpp
Browse filesMSVC transitively includes <memory> via other headers, masking the
missing include. GCC 11.4 requires it explicitly for std::shared_ptr.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
src/iaca/IacaAggregator.hpp
CHANGED
|
@@ -13,6 +13,7 @@
|
|
| 13 |
#include <vector>
|
| 14 |
#include <unordered_map>
|
| 15 |
#include <functional>
|
|
|
|
| 16 |
|
| 17 |
namespace eunex::iaca {
|
| 18 |
|
|
|
|
| 13 |
#include <vector>
|
| 14 |
#include <unordered_map>
|
| 15 |
#include <functional>
|
| 16 |
+
#include <memory>
|
| 17 |
|
| 18 |
namespace eunex::iaca {
|
| 19 |
|