Skip to content

Commit c70fa96

Browse files
author
ranga.code
committed
removed using namespace YAVL to make usage clearer.
1 parent 9534cd1 commit c70fa96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

example-code/checker.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include "yavl.h"
55

66
using namespace std;
7-
using namespace YAVL;
87

98
int main(int argc, char **argv)
109
{
@@ -32,7 +31,7 @@ int main(int argc, char **argv)
3231
return 2;
3332
}
3433

35-
Validator yavl(gr, doc);
34+
YAVL::Validator yavl(gr, doc);
3635
bool ok = yavl.validate();
3736
if (!ok) {
3837
cout << "ERRORS FOUND: " << endl << endl;

0 commit comments

Comments
 (0)