#include <catch_tostring.h>
|
static std::string | convert (const std::string &str) |
|
static std::string | convert (const std::string &str) |
|
Definition at line 1339 of file catch.hpp.
◆ convert() [1/2]
Definition at line 97 of file catch_tostring.cpp.
97 {
99 return '"' +
str +
'"';
100 }
101
103 for (char c : str) {
104 switch (c) {
105 case '\n':
107 break;
108 case '\t':
110 break;
111 default:
113 break;
114 }
115 }
118}
IContext & getCurrentContext()
◆ convert() [2/2]
The documentation for this struct was generated from the following files: