Skip to content

Commit

Permalink
Refs #4472. Add template instanstiation for uint64_t on 32bit gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Feb 16, 2012
1 parent d5785e5 commit 69f2143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/Strings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ template MANTID_KERNEL_DLL std::string toString(const float value);
template MANTID_KERNEL_DLL std::string toString(const int value);
template MANTID_KERNEL_DLL std::string toString(const uint16_t value);
template MANTID_KERNEL_DLL std::string toString(const size_t value); // Matches uint64_t on Linux 64 & Win 64
#if defined(__APPLE__) || ( defined(_WIN32) && !defined(_WIN64) ) // Mac or 42-bit Windows
#if defined(__APPLE__) || ( defined(_WIN32) && !defined(_WIN64)) || (defined(__GNUC__) && !defined(__LP64__)) // Mac or 32-bit compiler
template MANTID_KERNEL_DLL std::string toString(const uint64_t value);
#endif
template MANTID_KERNEL_DLL std::string toString(const std::string value);
Expand Down

0 comments on commit 69f2143

Please sign in to comment.