summaryrefslogtreecommitdiff
path: root/src/lib/raw_convert.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-23 10:20:56 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-23 10:20:56 +0100
commit0c3f91403eee01d4a1b2d2c520893de3a884a72d (patch)
treeee6003878063040b8687d6d58cefa40af34ec345 /src/lib/raw_convert.h
parent062dfa793fe484fe6eeb3828fa6462b50b6a6b27 (diff)
Fix missing words in properties windows (#874).
Diffstat (limited to 'src/lib/raw_convert.h')
-rw-r--r--src/lib/raw_convert.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/raw_convert.h b/src/lib/raw_convert.h
index 6e55d49cf..985c4e643 100644
--- a/src/lib/raw_convert.h
+++ b/src/lib/raw_convert.h
@@ -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