Skip to content

Commit

Permalink
Update header include
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 committed Jul 4, 2024
1 parent e083348 commit 73eba3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/.clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ IncludeCategories:
# NOTE: A header is grouped by first matching regex
# Library headers. Update when adding new libraries.
# NOTE: clang-format retains leading white-space on a line in violation of the YAML spec.
- Regex: "^<(clp)"
- Regex: "^<(clp)|^<(string_utils)"
Priority: 3
# C system headers
- Regex: "^<.+\\.h>"
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/ffi_go/ir/deserializer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <cstdint>
#include <functional>
#include <span>
#include <string_utils/string_utils.hpp>
#include <string_view>
#include <type_traits>
#include <utility>
Expand All @@ -16,6 +15,7 @@
#include <clp/components/core/src/clp/ffi/ir_stream/decoding_methods.hpp>
#include <clp/components/core/src/clp/ffi/ir_stream/protocol_constants.hpp>
#include <clp/components/core/src/clp/ir/types.hpp>
#include <string_utils/string_utils.hpp>

#include "ffi_go/api_decoration.h"
#include "ffi_go/defs.h"
Expand Down
3 changes: 2 additions & 1 deletion cpp/src/ffi_go/search/wildcard_query.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#include "wildcard_query.h"

#include <string>
#include <string_utils/string_utils.hpp>
#include <string_view>

#include <string_utils/string_utils.hpp>

#include "ffi_go/api_decoration.h"
#include "ffi_go/defs.h"

Expand Down

0 comments on commit 73eba3e

Please sign in to comment.