diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-05 23:27:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-05 23:27:30 +0900 |
commit | 509cd0aa505df0a93702608575b72f07a97c0139 (patch) | |
tree | cda134364734ce39751fd780a97c1f8b04ddd598 /src/tclap/ArgTraits.h | |
parent | 430373ae38565e0d7f62b8fca0cbad73de73ec7f (diff) | |
download | universal-indent-gui-tqt-509cd0aa505df0a93702608575b72f07a97c0139.tar.gz universal-indent-gui-tqt-509cd0aa505df0a93702608575b72f07a97c0139.zip |
Formatted and fixed TCLAP headers
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tclap/ArgTraits.h')
-rw-r--r-- | src/tclap/ArgTraits.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/tclap/ArgTraits.h b/src/tclap/ArgTraits.h index 7a4a892..297f166 100644 --- a/src/tclap/ArgTraits.h +++ b/src/tclap/ArgTraits.h @@ -1,5 +1,3 @@ -// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*- - /****************************************************************************** * * file: ArgTraits.h @@ -20,12 +18,12 @@ * *****************************************************************************/ +#ifndef TCLAP_ARGTRAITS_H +#define TCLAP_ARGTRAITS_H + // This is an internal tclap file, you should probably not have to // include this directly -#ifndef TCLAP_ARGTRAITS_H - #define TCLAP_ARGTRAITS_H - namespace TCLAP { // We use two empty structs to get compile type specialization @@ -46,7 +44,8 @@ namespace TCLAP * will be broken up into individual tokens by operator>>. */ struct StringLike - {}; + { + }; /** * A class can inherit from this object to make it have string like @@ -78,8 +77,7 @@ namespace TCLAP struct ArgTraits { typedef typename T::ValueCategory ValueCategory; - //typedef ValueLike ValueCategory; }; +} #endif -} // namespace |