mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 13:09:07 +08:00
12 lines
126 B
C
12 lines
126 B
C
|
#pragma once
|
||
|
|
||
|
namespace vcpkg
|
||
|
{
|
||
|
enum class opt_bool
|
||
|
{
|
||
|
unspecified,
|
||
|
enabled,
|
||
|
disabled
|
||
|
};
|
||
|
}
|