aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg-test
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2020-07-06 16:45:34 -0700
committerGitHub <noreply@github.com>2020-07-06 16:45:34 -0700
commit6a41626eaf33d2f3392e06d98a94c630bfc30977 (patch)
treefb92f59f27b99c56ed48f6cae649468b4407a073 /toolsrc/include/vcpkg-test
parentae4968fad40e8c14541dae89c481ec32c0500426 (diff)
downloadvcpkg-6a41626eaf33d2f3392e06d98a94c630bfc30977.tar.gz
vcpkg-6a41626eaf33d2f3392e06d98a94c630bfc30977.zip
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI * format the C++ * CR
Diffstat (limited to 'toolsrc/include/vcpkg-test')
-rw-r--r--toolsrc/include/vcpkg-test/util.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/toolsrc/include/vcpkg-test/util.h b/toolsrc/include/vcpkg-test/util.h
index 9321f3fd2..f7d2f2a50 100644
--- a/toolsrc/include/vcpkg-test/util.h
+++ b/toolsrc/include/vcpkg-test/util.h
@@ -1,13 +1,13 @@
#include <vcpkg/base/system_headers.h>
#include <catch2/catch.hpp>
-#include <vcpkg/base/pragmas.h>
+
+#include <memory>
#include <vcpkg/base/files.h>
+#include <vcpkg/base/pragmas.h>
#include <vcpkg/statusparagraph.h>
-#include <memory>
-
#define CHECK_EC(ec) \
do \
{ \
@@ -54,7 +54,7 @@ namespace vcpkg::Test
{
std::unordered_map<std::string, SourceControlFileLocation> map;
Triplet triplet;
- PackageSpecMap(Triplet t = Triplet::X86_WINDOWS) noexcept : triplet(t) {}
+ PackageSpecMap(Triplet t = Triplet::X86_WINDOWS) noexcept : triplet(t) { }
PackageSpec emplace(const char* name,
const char* depends = "",
@@ -86,9 +86,9 @@ namespace vcpkg::Test
Yes = true,
} tag;
- constexpr AllowSymlinks(Tag tag) noexcept : tag(tag) {}
+ constexpr AllowSymlinks(Tag tag) noexcept : tag(tag) { }
- constexpr explicit AllowSymlinks(bool b) noexcept : tag(b ? Yes : No) {}
+ constexpr explicit AllowSymlinks(bool b) noexcept : tag(b ? Yes : No) { }
constexpr operator bool() const noexcept { return tag == Yes; }
};