]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/any.h
Fix for special characters in Doxygen comments.
[wxWidgets.git] / interface / wx / any.h
index de177e1430e2d23bde4d13368972eeb888db94b7..e8b5c6da5f84bb543966a116f4315024a9639dae 100644 (file)
     object in heap for large objects (i.e. ones with size more than
     WX_ANY_VALUE_BUFFER_SIZE, which at the time of writing is 16 bytes).
 
+    @note When performing conversions between strings and floating point
+        numbers, the representation of numbers in C locale is always used.
+        I.e. @code wxAny("1.23").GetAs<double>() @endcode will always work,
+        even if the current locale uses comma as decimal separator.
+
     @library{wxbase}
     @category{data}