summaryrefslogtreecommitdiff
path: root/src/gui/color.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-23 23:03:27 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-23 23:03:27 +0300
commit49fff1aed195d44871caeeff063b1b8c76628e02 (patch)
tree5a2d8a617c089a1e8b6c50daa05ee32cb7c5ec90 /src/gui/color.h
parent9c9a1a4a4e2af42246f56aa73a5212ece9af9493 (diff)
downloadplus-49fff1aed195d44871caeeff063b1b8c76628e02.tar.gz
plus-49fff1aed195d44871caeeff063b1b8c76628e02.tar.bz2
plus-49fff1aed195d44871caeeff063b1b8c76628e02.tar.xz
plus-49fff1aed195d44871caeeff063b1b8c76628e02.zip
Remove default parameter from color.
Diffstat (limited to 'src/gui/color.h')
-rw-r--r--src/gui/color.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/color.h b/src/gui/color.h
index c4a1aab01..71f688fda 100644
--- a/src/gui/color.h
+++ b/src/gui/color.h
@@ -118,7 +118,7 @@ class Color final
constexpr Color(const unsigned int ar,
const unsigned int ag,
const unsigned int ab,
- const unsigned int aa = 255) :
+ const unsigned int aa) :
r(ar),
g(ag),
b(ab),