aboutsummaryrefslogtreecommitdiff
path: root/src/tests/text.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2022-04-22 23:52:29 -0700
committerMike Buland <eichlan@xagasoft.com>2022-04-22 23:52:29 -0700
commit8ef500bc0b259cf6a73772148153b759e954297e (patch)
treed0c30837f15656f0b3bade6ce608d396551b78a4 /src/tests/text.cpp
parent23d88aa2812c361d30abefeeb296548698409bf5 (diff)
downloadlibbu++-8ef500bc0b259cf6a73772148153b759e954297e.tar.gz
libbu++-8ef500bc0b259cf6a73772148153b759e954297e.tar.bz2
libbu++-8ef500bc0b259cf6a73772148153b759e954297e.tar.xz
libbu++-8ef500bc0b259cf6a73772148153b759e954297e.zip
C++11 introduced actual unicode string literals.bigchange
I'm moving things to take advantage of that. It's pretty cool!
Diffstat (limited to '')
-rw-r--r--src/tests/text.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/text.cpp b/src/tests/text.cpp
new file mode 100644
index 0000000..0b99e3b
--- /dev/null
+++ b/src/tests/text.cpp
@@ -0,0 +1,9 @@
1#include "bu/text.h"
2
3int main( int argc, char *argv[] )
4{
5 Bu::Text txt(UR"sql(Hello there!""''"")sql");
6
7 return 0;
8}
9