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 1
1
#include " utils.h"
2
2
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
+
1
3
#include < string>
2
4
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