Skip to content

Commit 789bc56

Browse files
authored
fix: clang build
1 parent cd0db52 commit 789bc56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

include/dynlibutils/module.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#include <type_traits>
2121
#include <utility>
2222
#include <vector>
23-
#include <new>
2423
#include <unordered_map>
2524
#include <mutex>
2625
#include <shared_mutex>
@@ -391,7 +390,7 @@ class CAssemblyModule : public CMemory
391390

392391
const Section_t *m_pExecutableSection;
393392

394-
alignas(std::hardware_constructive_interference_size) mutable std::unordered_map<CCache, CMemory, CHash> m_mapCached;
393+
alignas(64) mutable std::unordered_map<CCache, CMemory, CHash> m_mapCached;
395394
DYNLIB_NUA mutable Mutex m_mutex;
396395

397396
public:

0 commit comments

Comments
 (0)