Fix missing words in properties windows (#874).
[dcpomatic.git] / src / lib / raw_convert.h
index 6e55d49cf4802c8930b3eb7e994c8e05f09d8471..985c4e643263df5e41a05c7207f829fb893eacf9 100644 (file)
@@ -44,4 +44,12 @@ raw_convert (Q v, int precision = 16)
        return r;
 }
 
+template <>
+std::string
+raw_convert<std::string, char const *> (char const * v, int);
+
+template <>
+std::string
+raw_convert<std::string, std::string> (std::string v, int);
+
 #endif