diff --git a/src/common/Color.cpp b/src/common/Color.cpp index 39bab16a..356a226c 100644 --- a/src/common/Color.cpp +++ b/src/common/Color.cpp @@ -127,7 +127,7 @@ Color::Color (const std::string& spec) : _value (0) { // Split spec into words. - std::vector words = split (spec, ' '); + auto words = split (spec, ' '); // Construct the color as two separate colors, then blend them later. This // make it possible to declare a color such as "color1 on black", and have