moved to gz namespace

This commit is contained in:
matthias@arch 2022-09-26 20:30:57 +02:00
parent 6d03ad7cad
commit e7ec7f61f4
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* #include "util.hpp" */ #include "../util/util.hpp"
#include <iostream> #include <iostream>
#include <vector> #include <vector>
@ -7,7 +7,7 @@
#include <concepts> #include <concepts>
#include <thread> #include <thread>
namespace gz::util { namespace gz {
// from util.hpp // from util.hpp
template<std::unsigned_integral I, std::unsigned_integral S> template<std::unsigned_integral I, std::unsigned_integral S>
@ -210,4 +210,4 @@ namespace gz::util {
readIndex = 0; readIndex = 0;
mtx.unlock(); mtx.unlock();
} }
} } // namespace gz

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
/* #include "log.hpp" */ /* #include "log.hpp" */
#include "util.hpp" #include "../util/util.hpp"
#include <vector> #include <vector>
#include <iterator> #include <iterator>