Skip to content

Commit

Permalink
Fix Minor typo when re formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneAr committed Feb 15, 2024
1 parent 50384ce commit b9eaba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/qrw/Params.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ struct Params {
oss << "Error: Wrong parsing of the YAML file from src file: [" << __FILE__ << "]" \
<< ", in function: [" << __FUNCTION__ << "]" \
<< ", line: " << __LINE__ << ". Node [" << child_node_name << "] does not exists" \
<< "under the node [" parent_node_name << "]."; \
<< "under the node [" << parent_node_name << "]."; \
throw std::runtime_error(oss.str()); \
} \
assert(true)
Expand Down

0 comments on commit b9eaba2

Please sign in to comment.