Skip to content

Commit

Permalink
ci: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirdEyeSqueegee committed Sep 9, 2023
1 parent faa6b38 commit 3e701a9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
{
"name": "build-release-msvc",
"inherits": [ "base", "vcpkg", "win32-unicode", "x64", "msvc" ],
"inherits": ["base", "vcpkg", "win32-unicode", "x64", "msvc"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},
Expand All @@ -82,7 +82,7 @@
},
{
"name": "build-debug-msvc",
"inherits": [ "base", "vcpkg", "win32-unicode", "x64", "msvc" ],
"inherits": ["base", "vcpkg", "win32-unicode", "x64", "msvc"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
Expand Down
12 changes: 6 additions & 6 deletions include/parallel_hashmap/phmap_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -2508,12 +2508,12 @@ namespace phmap
#pragma warning(push)
#pragma warning(disable : 4702)
#endif // _MSC_VER
// optional::value()
//
// Returns a reference to an `optional`s underlying value. The constness
// and lvalue/rvalue-ness of the `optional` is preserved to the view of
// the `T` sub-object. Throws `phmap::bad_optional_access` when the `optional`
// is empty.
// optional::value()
//
// Returns a reference to an `optional`s underlying value. The constness
// and lvalue/rvalue-ness of the `optional` is preserved to the view of
// the `T` sub-object. Throws `phmap::bad_optional_access` when the `optional`
// is empty.
constexpr const T& value() const&
{
return static_cast<bool>(*this) ? reference() : (optional_internal::throw_bad_optional_access(), reference());
Expand Down
9 changes: 2 additions & 7 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "container-item-distributor",
"version-semver": "1.1.1",
"dependencies": [
"commonlibsse-ng",
"simpleini"
],
"dependencies": ["commonlibsse-ng", "simpleini"],
"license": "GPL-3.0-or-later",
"vcpkg-configuration": {
"default-registry": {
Expand All @@ -18,9 +15,7 @@
"kind": "git",
"repository": "https://gitlab.com/colorglass/vcpkg-colorglass",
"baseline": "6309841a1ce770409708a67a9ba5c26c537d2937",
"packages": [
"commonlibsse-ng"
]
"packages": ["commonlibsse-ng"]
}
]
}
Expand Down

0 comments on commit 3e701a9

Please sign in to comment.