]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstring.h
CMake: fix merged build, seems GCC could not handle the namespaces correctly
[lyx.git] / src / support / docstring.h
index e84ba6f2d0c84a5e4443e249efd8375b67d6f248..22dd2ffa4cf3c61cc08c1a1c6cf78b7caa7957f1 100644 (file)
 
 namespace lyx {
 
-/// String type for storing the main text in UCS4 encoding
+/**
+ * String type for storing the main text in UCS4 encoding.
+ * Use std::string only in cases 7-bit ASCII is to be manipulated
+ * within the variable.
+ */
 typedef std::basic_string<char_type> docstring;
 
 /// Creates a docstring from a C string of ASCII characters