Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Dec 31, 2024
1 parent d5b8cfc commit 3aad757
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/ada/checkers.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

#include "ada/common_defs.h"

#include <string_view>
#include <cstring>
#include <string_view>

/**
* These functions are not part of our public API and may
Expand Down
1 change: 1 addition & 0 deletions src/ada.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "ada.h"
#include "checkers.cpp"
#include "unicode.cpp"
#include "serializers.cpp"
Expand Down
4 changes: 4 additions & 0 deletions src/checkers.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#include "ada/checkers-inl.h"
#include "ada/checkers.h"
#include "ada/unicode-inl.h"
#include "ada/common_defs.h"

#include <algorithm>
#include <array>
#include <string_view>

namespace ada::checkers {

Expand Down
1 change: 1 addition & 0 deletions src/serializers.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <array>
#include <charconv>
#include <string>

namespace ada::serializers {
Expand Down
3 changes: 2 additions & 1 deletion src/unicode.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "ada/character_sets-inl.h"
#include "ada/common_defs.h"
#include "ada/character_sets-inl.h"
#include "ada/character_sets.h"
#include "ada/unicode.h"
#include "ada/log.h"

Expand Down

0 comments on commit 3aad757

Please sign in to comment.