8000 Use tabs instead of spaces · Dadie/docopt.cpp@6879488 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6879488

Browse files
indianakernickjaredgrubb
authored andcommitted
Use tabs instead of spaces
Not a fan of tabs. hehe
1 parent 2f8a311 commit 6879488

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docopt_value.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
namespace docopt {
1919

20-
enum class Kind {
21-
Empty,
22-
Bool,
23-
Long,
24-
String,
25-
StringList
26-
};
20+
enum class Kind {
21+
Empty,
22+
Bool,
23+
Long,
24+
String,
25+
StringList
26+
};
2727

2828
/// A generic type to hold the various types that can be produced by docopt.
2929
///
@@ -45,7 +45,7 @@ namespace docopt {
4545
value& operator=(value const&);
4646
value& operator=(value&&) noexcept;
4747

48-
Kind kind() const { return mKind; }
48+
Kind kind() const { return mKind; }
4949

5050
// Test if this object has any contents at all
5151
explicit operator bool() const { return mKind != Kind::Empty; }

0 commit comments

Comments
 (0)
0