Skip to content

Commit eb8b9ce

Browse files
use class
1 parent f40187d commit eb8b9ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/openFrameworks/types/ofColor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ofColor_{
4545
/// \param list 2 items = The gray value + alpha
4646
/// \param list 3 items = The RGB values (full alpha)
4747
/// \param list 4 items = The RGB values + alpha
48-
template<typename InitType>
48+
template<class InitType>
4949
ofColor_(std::vector<InitType> list): ofColor_() {
5050
if (list.size() == 1) set(list[0]);
5151
if (list.size() == 2) set(list[0], list[1]);

0 commit comments

Comments
 (0)