mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 23:11:17 +08:00
12 lines
126 B
C++
12 lines
126 B
C++
#pragma once
|
|
|
|
namespace vcpkg
|
|
{
|
|
enum class opt_bool
|
|
{
|
|
UNSPECIFIED,
|
|
ENABLED,
|
|
DISABLED
|
|
};
|
|
}
|