Skip to content

Commit

Permalink
Fix for issue #500 (#500)
Browse files Browse the repository at this point in the history
Adds two `#include` directives, one for `<string>` in `soar_instance.h` and the other for `"portability.h"` in `serialize.cpp`.
  • Loading branch information
JBoggsy authored and garfieldnate committed Sep 24, 2024
1 parent 9f1583a commit 4a07705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Core/SVS/src/serialize.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <cstdio>
#include <cstring>
#include "common.h"
#include "portability.h"
#include "serialize.h"

void serialize(const serializable& v, std::ostream& os)
Expand Down
1 change: 1 addition & 0 deletions Core/SoarKernel/src/shared/soar_instance.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "kernel.h"
#include "Export.h"

#include <string>
#include <unordered_map>

typedef void* (*MessageFunction)(const char* pMessage, void* pMessageData);
Expand Down

0 comments on commit 4a07705

Please sign in to comment.