]> git.lyx.org Git - lyx.git/blobdiff - src/support/os.cpp
Fix samba related crashes
[lyx.git] / src / support / os.cpp
index 4d2c55ed378e3862c0d4ce7c520f07e13a1bdcd4..820f4e9a66be3b8c32b4362843657b530230c629 100644 (file)
 #include "support/os_unix.cpp"
 #endif
 
+// Static assert to break compilation on platforms where
+// int/unsigned int is not 4 bytes. Added to make sure that
+// e.g., the author hash is always 32-bit.
+template<bool Condition> struct static_assert_helper;
+template <> struct static_assert_helper<true> {};
+enum { 
+       dummy = sizeof(static_assert_helper<sizeof(int) == 4>)
+};
+
 namespace lyx {
 namespace support {
 namespace os {
 
-std::string const python()
+string const python()
 {
        // Use the -tt switch so that mixed tab/whitespace indentation is
        // an error
-       static std::string const command("python -tt");
+       static string const command("python -tt");
        return command;
 }