We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8a311 commit 6879488Copy full SHA for 6879488
docopt_value.h
@@ -17,13 +17,13 @@
17
18
namespace docopt {
19
20
- enum class Kind {
21
- Empty,
22
- Bool,
23
- Long,
24
- String,
25
- StringList
26
- };
+ enum class Kind {
+ Empty,
+ Bool,
+ Long,
+ String,
+ StringList
+ };
27
28
/// A generic type to hold the various types that can be produced by docopt.
29
///
@@ -45,7 +45,7 @@ namespace docopt {
45
value& operator=(value const&);
46
value& operator=(value&&) noexcept;
47
48
- Kind kind() const { return mKind; }
+ Kind kind() const { return mKind; }
49
50
// Test if this object has any contents at all
51
explicit operator bool() const { return mKind != Kind::Empty; }
0 commit comments