Skip to content

style(clang-tidy):Use hh extension for cpp header files #1645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/json/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sourcemeta_library(NAMESPACE sourcemeta PROJECT core NAME json
PRIVATE_HEADERS array.h error.h object.h value.h hash.h
PRIVATE_HEADERS array.h error.h object.h value.h hash.hh
SOURCES grammar.h parser.h stringify.h json.cc json_value.cc)

if(SOURCEMETA_CORE_INSTALL)
Expand Down
1 change: 0 additions & 1 deletion src/core/json/include/sourcemeta/core/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <sourcemeta/core/json_export.h>
#endif

#include <sourcemeta/core/json_hash.h>
#include <sourcemeta/core/json_value.h>

#include <cstdint> // std::uint64_t
Expand Down
2 changes: 1 addition & 1 deletion src/core/json/include/sourcemeta/core/json_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#endif

#include <sourcemeta/core/json_array.h>
#include <sourcemeta/core/json_hash.h>
#include <sourcemeta/core/json_hash.hh>
#include <sourcemeta/core/json_object.h>

#include <algorithm> // std::any_of
Expand Down