summaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-08-20 11:29:42 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2018-08-20 11:29:42 +0000
commit3d538f2df752f7f4d3db516f4aecfba63b3a7e24 (patch)
treeed42badbefcc772d5939973458bad39bf03ba4c0 /searchcommon
parentc6d642b55558203a6eddd79efbc232bb34ec8e52 (diff)
Some style changes
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/attribute/basictype.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/searchcommon/src/vespa/searchcommon/attribute/basictype.h b/searchcommon/src/vespa/searchcommon/attribute/basictype.h
index 3a2a319afd8..5bc51cdbea8 100644
--- a/searchcommon/src/vespa/searchcommon/attribute/basictype.h
+++ b/searchcommon/src/vespa/searchcommon/attribute/basictype.h
@@ -27,13 +27,10 @@ class BasicType
MAX_TYPE
};
- explicit
- BasicType(int t) : _type(Type(t)) { }
- explicit
- BasicType(unsigned int t) : _type(Type(t)) { }
+ explicit BasicType(int t) : _type(Type(t)) { }
+ explicit BasicType(unsigned int t) : _type(Type(t)) { }
BasicType(Type t) : _type(t) { }
- explicit
- BasicType(const vespalib::string & t) : _type(asType(t)) { }
+ explicit BasicType(const vespalib::string & t) : _type(asType(t)) { }
Type type() const { return _type; }
const char * asString() const { return asString(_type); }