nicole mazzuca 6a41626eaf
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI

* format the C++

* CR
2020-07-06 16:45:34 -07:00

21 lines
461 B
C++

#pragma once
#include <atomic>
#include <string>
#include <vcpkg/base/chrono.h>
#include <vcpkg/base/util.h>
namespace vcpkg
{
struct GlobalState
{
static Util::LockGuarded<Chrono::ElapsedTimer> timer;
static Util::LockGuarded<std::string> g_surveydate;
static std::atomic<int> g_init_console_cp;
static std::atomic<int> g_init_console_output_cp;
static std::atomic<bool> g_init_console_initialized;
};
}