File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11#include " utils.h"
22
3- std::string add_quotes (const std::string& str) {
4- return " \" " + str + " \" " ;
5- }
3+ namespace rerun_vrs {
4+
5+ std::string add_quotes (const std::string& str) {
6+ return " \" " + str + " \" " ;
7+ }
8+
9+ } // namespace rerun_vrs
Original file line number Diff line number Diff line change 1+ #pragma once
2+
13#include < string>
24
3- // / Add double quotes around string
4- // / Useful to support arbitary strings as part of entity path in Rerun
5- std::string add_quotes (const std::string& str);
5+ namespace rerun_vrs {
6+
7+ // / Add double quotes around string
8+ // / Useful to support arbitary strings as part of entity path in Rerun
9+ std::string add_quotes (const std::string& str);
10+
11+ } // namespace rerun_vrs
You can’t perform that action at this time.
0 commit comments