c.s.tools.ide.analysis.modernize/test/unit/data/ide/analysis/modernize/SingleCppFileCheckTest/hello-cmake-world/src/modernize-raw-string-literal.cpp
branchrelease82
changeset 18423 b9d9af239a0c
parent 18403 67d78b11d2e0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/c.s.tools.ide.analysis.modernize/test/unit/data/ide/analysis/modernize/SingleCppFileCheckTest/hello-cmake-world/src/modernize-raw-string-literal.cpp	Wed Jun 07 20:23:29 2017 +0300
     1.3 @@ -0,0 +1,8 @@
     1.4 +const char *const Quotes{"embedded \"quotes\""};
     1.5 +const char *const Paragraph{"Line one.\nLine two.\nLine three.\n"};
     1.6 +const char *const SingleLine{"Single line.\n"};
     1.7 +const char *const TrailingSpace{"Look here -> \n"};
     1.8 +const char *const Tab{"One\tTwo\n"};
     1.9 +const char *const Bell{"Hello!\a  And welcome!"};
    1.10 +const char *const Path{"C:\\Program Files\\Vendor\\Application.exe"};
    1.11 +const char *const RegEx{"\\w\\([a-z]\\)"};