summaryrefslogtreecommitdiff
path: root/src/units.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-01-04 18:39:13 +0100
committerMaxime Coste <frrrwww@gmail.com>2013-01-04 18:39:13 +0100
commit4b649d386cb808cfd64a3ebab982d0ecd0813c86 (patch)
treeff0d68ad1131e396f83a960088a246b67f1856b1 /src/units.hh
parentb5418c94caa8d6842780b72b73f353795b3d07dd (diff)
various code style fixes
Diffstat (limited to 'src/units.hh')
-rw-r--r--src/units.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/units.hh b/src/units.hh
index 74840402..8fdfcacd 100644
--- a/src/units.hh
+++ b/src/units.hh
@@ -9,7 +9,7 @@ class StronglyTypedInteger
{
public:
explicit constexpr StronglyTypedInteger(ValueType value)
- : m_value(value) {}
+ : m_value(value) {}
constexpr RealType operator+(const RealType& other) const
{ return RealType(m_value + other.m_value); }