RayMelius Claude Opus 4.6 commited on
Commit
3e849a8
·
1 Parent(s): 5412a90

Fix GCC build: add missing #include <memory> in IacaAggregator.hpp

Browse files

MSVC 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>

Files changed (1) hide show
  1. src/iaca/IacaAggregator.hpp +1 -0
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