aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg-test/files.cpp
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/src/vcpkg-test/files.cpp
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/src/vcpkg-test/files.cpp')
-rw-r--r--toolsrc/src/vcpkg-test/files.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/toolsrc/src/vcpkg-test/files.cpp b/toolsrc/src/vcpkg-test/files.cpp
index cbe1e81c3..0a8362a51 100644
--- a/toolsrc/src/vcpkg-test/files.cpp
+++ b/toolsrc/src/vcpkg-test/files.cpp
@@ -1,14 +1,13 @@
#include <catch2/catch.hpp>
-#include <vcpkg-test/util.h>
-
-#include <vcpkg/base/files.h>
-#include <vcpkg/base/strings.h>
#include <iostream>
#include <random>
-
#include <vector>
+#include <vcpkg-test/util.h>
+#include <vcpkg/base/files.h>
+#include <vcpkg/base/strings.h>
+
using vcpkg::Test::AllowSymlinks;
using vcpkg::Test::base_temporary_directory;
using vcpkg::Test::can_create_symlinks;
@@ -38,21 +37,21 @@ namespace
struct MaxDepth
{
std::uint64_t i;
- explicit MaxDepth(std::uint64_t i) : i(i) {}
+ explicit MaxDepth(std::uint64_t i) : i(i) { }
operator uint64_t() const { return i; }
};
struct Width
{
std::uint64_t i;
- explicit Width(std::uint64_t i) : i(i) {}
+ explicit Width(std::uint64_t i) : i(i) { }
operator uint64_t() const { return i; }
};
struct CurrentDepth
{
std::uint64_t i;
- explicit CurrentDepth(std::uint64_t i) : i(i) {}
+ explicit CurrentDepth(std::uint64_t i) : i(i) { }
operator uint64_t() const { return i; }
CurrentDepth incremented() const { return CurrentDepth{i + 1}; }
};