Skip to content
Merged
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 .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths-ignore:
- '**.md' #Do not need to run CI for markdown changes.
pull_request:
branches: [ main ]
branches: [ main, server-side ]
paths-ignore:
- '**.md'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths-ignore:
- '**.md' #Do not need to run CI for markdown changes.
pull_request:
branches: [ main ]
branches: [ main, server-side ]
paths-ignore:
- '**.md'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches: [ "main", server-side ]

jobs:
cpp-linter:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths-ignore:
- '**.md' #Do not need to run CI for markdown changes.
pull_request:
branches: [ main ]
branches: [ main, server-side ]
paths-ignore:
- '**.md'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include <chrono>
#include <cstddef>
#include <optional>
#include <string>
#include <unordered_map>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
#include <boost/core/ignore_unused.hpp>
#include <boost/json.hpp>

#include <optional>
#include <unordered_map>

namespace launchdarkly {

template <typename T>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
#include <launchdarkly/serialization/json_errors.hpp>
#include <launchdarkly/serialization/json_primitives.hpp>

#include <boost/json.hpp>
#include <boost/core/ignore_unused.hpp>
#include <boost/json.hpp>
#include <tl/expected.hpp>

#include <optional>
#include <type_traits>

// Parses a field, propagating an error if the field's value is of the wrong
// type. If the field was null or omitted in the data, it is set to
// default_value.
Expand Down
2 changes: 2 additions & 0 deletions libs/internal/src/serialization/value_mapping.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include <launchdarkly/serialization/value_mapping.hpp>

#include <vector>

namespace launchdarkly {

template <>
Expand Down