Skip to content

Commit

Permalink
adding missing headers (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire authored Feb 11, 2025
1 parent 7137b3e commit 9cf5150
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/ada/helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "ada/common_defs.h"
#include "ada/url_base.h"

#include <string>
#include <string_view>
#include <optional>

Expand Down
1 change: 1 addition & 0 deletions include/ada/implementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef ADA_IMPLEMENTATION_H
#define ADA_IMPLEMENTATION_H

#include <string>
#include <string_view>
#include <optional>

Expand Down
1 change: 1 addition & 0 deletions include/ada/parser-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "ada/url_pattern_helpers.h"
#include "ada/parser.h"

#include <string>
#include <string_view>
#include <variant>

Expand Down
1 change: 1 addition & 0 deletions include/ada/unicode.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "ada/ada_idna.h"

#include <string>
#include <string_view>
#include <optional>

/**
Expand Down
1 change: 1 addition & 0 deletions include/ada/url.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <algorithm>
#include <optional>
#include <ostream>
#include <string>
#include <string_view>

Expand Down
1 change: 1 addition & 0 deletions include/ada/url_aggregator-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "ada/log.h"

#include <charconv>
#include <ostream>
#include <string_view>

namespace ada {
Expand Down
1 change: 1 addition & 0 deletions include/ada/url_aggregator.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef ADA_URL_AGGREGATOR_H
#define ADA_URL_AGGREGATOR_H

#include <ostream>
#include <string>
#include <string_view>
#include <variant>
Expand Down
1 change: 1 addition & 0 deletions include/ada/url_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "ada/common_defs.h"
#include "ada/scheme.h"

#include <string>
#include <string_view>

namespace ada {
Expand Down
2 changes: 2 additions & 0 deletions include/ada/url_pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
#include "ada/parser.h"
#include "ada/url_pattern_init.h"

#include <ostream>
#include <string>
#include <string_view>
#include <unordered_map>
#include <variant>
#include <vector>
Expand Down
3 changes: 3 additions & 0 deletions include/ada/url_pattern_regex.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#ifndef ADA_URL_PATTERN_REGEX_H
#define ADA_URL_PATTERN_REGEX_H

#include <string>
#include <string_view>

#ifdef ADA_USE_UNSAFE_STD_REGEX_PROVIDER
#include <regex>
#endif // ADA_USE_UNSAFE_STD_REGEX_PROVIDER
Expand Down

0 comments on commit 9cf5150

Please sign in to comment.