diff options
author | John Fultz <jfultz@wolfram.com> | 2015-10-14 04:37:27 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2015-10-14 04:37:27 -0500 |
commit | 86e8d2a1247e8c6b00cefda10b2a96376a1540ca (patch) | |
tree | 5b5089a9462b34ca1e0b833638b9df779c50d410 /quackleio/dawgfactory.h | |
parent | fd6daafffbcce3bfc385d7508a1ca50174840912 (diff) |
Windows build fixes.
Diffstat (limited to 'quackleio/dawgfactory.h')
-rw-r--r-- | quackleio/dawgfactory.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/quackleio/dawgfactory.h b/quackleio/dawgfactory.h index efcc455..7af4d68 100644 --- a/quackleio/dawgfactory.h +++ b/quackleio/dawgfactory.h @@ -19,6 +19,7 @@ #ifndef QUACKLE_DAWGFACTORY_H #define QUACKLE_DAWGFACTORY_H +#include <cstdint> #include <string> #include <vector> #include "flexiblealphabet.h" @@ -82,7 +83,7 @@ private: Node m_root; union { char charptr[16]; - int32_t int32ptr[4]; + std::int32_t int32ptr[4]; } m_hash; static const char m_versionNumber = 1; |