summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-10-10 22:45:39 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-10-10 22:45:39 +0200
commit8a9d3cdf3733ed03093ec5c6e4a65549646a6c74 (patch)
tree60f815cc37a95a89368689ed883d70eb55ffdde7 /src
parentf88c50522d6ff832a81f20384e9745ce8cef0625 (diff)
Added support for compiling the library, the client, and the samples under MSVC 2013
Diffstat (limited to 'src')
-rw-r--r--src/utilities.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utilities.hpp b/src/utilities.hpp
index 02dda069..3074c65a 100644
--- a/src/utilities.hpp
+++ b/src/utilities.hpp
@@ -210,7 +210,7 @@ bool CheckArgument(const int argc, char *argv[], std::string &help, const std::s
// =================================================================================================
// Helper function to check for errors in the status code
-constexpr bool ErrorIn(const StatusCode s) { return (s != StatusCode::kSuccess); }
+inline bool ErrorIn(const StatusCode s) { return (s != StatusCode::kSuccess); }
// =================================================================================================