mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
Remove extraneous conversion from string -> c_str -> string (#739)
This commit is contained in:

committed by
Jesse Beder

parent
db0bda7087
commit
b218787b98
@@ -160,7 +160,7 @@ class YAML_CPP_API Exception : public std::runtime_error {
|
|||||||
static const std::string build_what(const Mark& mark,
|
static const std::string build_what(const Mark& mark,
|
||||||
const std::string& msg) {
|
const std::string& msg) {
|
||||||
if (mark.is_null()) {
|
if (mark.is_null()) {
|
||||||
return msg.c_str();
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::stringstream output;
|
std::stringstream output;
|
||||||
|
Reference in New Issue
Block a user