Skip to content

Commit

Permalink
more consistent directory structure
Browse files Browse the repository at this point in the history
Signed-off-by: aw <[email protected]>
  • Loading branch information
a-w50 authored and james-ctc committed Oct 22, 2024
1 parent 22a59e8 commit 13dfb52
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/staging/tls/extensions/tls_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <cstdint>

#include <everest/staging/EnumFlags.hpp>
#include <everest/staging/util/EnumFlags.hpp>

struct ocsp_response_st;
struct ssl_ctx_st;
Expand Down
2 changes: 1 addition & 1 deletion lib/staging/tls/tests/tls_connection_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <tls.hpp>
#include <unistd.h>

#include <everest/staging/EnumFlags.hpp>
#include <everest/staging/util/EnumFlags.hpp>

using namespace std::chrono_literals;

Expand Down
2 changes: 1 addition & 1 deletion lib/staging/util/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cc_library(
name = "util",
hdrs = ["include/everest/staging/EnumFlags.hpp"],
hdrs = ["include/*.hpp"],
visibility = ["//visibility:public"],
includes = ["include"],
)
4 changes: 1 addition & 3 deletions lib/staging/util/tests/EnumFlagsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
// Copyright Pionix GmbH and Contributors to EVerest
#include <gtest/gtest.h>

#include <everest/staging/EnumFlags.hpp>

#include <atomic>
#include <everest/staging/util/EnumFlags.hpp>

enum class ErrorHandlingFlags : std::uint8_t {
prevent_charging,
Expand Down
1 change: 0 additions & 1 deletion modules/EvseManager/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ cc_everest_module(
deps = [
"@pugixml//:libpugixml",
"@sigslot//:sigslot",
"@everest-core//lib/staging/util:util"
],
impls = IMPLS,
srcs = glob(
Expand Down
1 change: 0 additions & 1 deletion modules/EvseManager/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ target_link_libraries(${MODULE_NAME}
PRIVATE
Pal::Sigslot
pugixml::pugixml
everest::staging::util
)

if (CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9)
Expand Down

0 comments on commit 13dfb52

Please sign in to comment.