Skip to content

Commit f55f08f

Browse files
committed
clang-format
1 parent 33e1d45 commit f55f08f

19 files changed

+24
-31
lines changed

src/datadog/collector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
// `response_handler` parameter to `Collector::send`.
1212

1313
#include <memory>
14-
#include "optional.h"
1514
#include <vector>
1615

1716
#include "expected.h"
1817
#include "json_fwd.hpp"
18+
#include "optional.h"
1919

2020
namespace datadog {
2121
namespace tracing {

src/datadog/dict_reader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// context from externalized formats: HTTP headers, gRPC metadata, etc.
66

77
#include <functional>
8-
#include "optional.h"
98

9+
#include "optional.h"
1010
#include "string_view.h"
1111

1212
namespace datadog {

src/datadog/environment.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
//
1515
// `lookup` retrieves the value of `Variable` in the environment.
1616

17-
#include "optional.h"
18-
1917
#include "json_fwd.hpp"
18+
#include "optional.h"
2019
#include "string_view.h"
2120

2221
namespace datadog {

src/datadog/expected.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
// error then it cannot be "dereferenced" with `operator*`, i.e. it is analogous
3838
// to `Optional<Error>` (and is implemented as such).
3939

40-
#include "optional.h"
4140
#include <variant>
4241

4342
#include "error.h"
43+
#include "optional.h"
4444

4545
namespace datadog {
4646
namespace tracing {

src/datadog/http_client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
#include <chrono>
1212
#include <functional>
13-
#include "optional.h"
1413

1514
#include "error.h"
1615
#include "expected.h"
1716
#include "json_fwd.hpp"
17+
#include "optional.h"
1818

1919
namespace datadog {
2020
namespace tracing {

src/datadog/net_util.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
// This component provides networking-related miscellanea.
44

5-
#include "optional.h"
65
#include <string>
76

7+
#include "optional.h"
8+
89
namespace datadog {
910
namespace tracing {
1011

src/datadog/sampling_decision.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// contains supporting information about the reason for the decision.
66

77
#include "optional.h"
8-
98
#include "rate.h"
109
#include "sampling_mechanism.h"
1110

src/datadog/span.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#include "span.h"
22

33
#include <cassert>
4-
#include "optional.h"
54
#include <string>
65

76
#include "dict_writer.h"
7+
#include "optional.h"
88
#include "span_config.h"
99
#include "span_data.h"
1010
#include "string_view.h"

src/datadog/span.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
#include <chrono>
4444
#include <functional>
4545
#include <memory>
46-
#include "optional.h"
4746

4847
#include "clock.h"
4948
#include "error.h"
5049
#include "id_generator.h"
50+
#include "optional.h"
5151
#include "string_view.h"
5252

5353
namespace datadog {

src/datadog/span_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
// when no corresponding property is specified in a `SpanConfig` argument.
1414
// See `SpanData::apply_config`.
1515

16-
#include "optional.h"
1716
#include <string>
1817
#include <unordered_map>
1918
#include <variant>
2019

2120
#include "clock.h"
21+
#include "optional.h"
2222

2323
namespace datadog {
2424
namespace tracing {

0 commit comments

Comments
 (0)