Skip to content

Commit eab0b1e

Browse files
committed
Fix build with clang 3.6
This is backported commit 509ccac9dd53932b158ee10b47e95d495deb3fd9 from fuzzylite
1 parent d32461d commit eab0b1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

AI/FuzzyLite/fuzzylite/fl/norm/SNorm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace fl {
4040

4141
FL_DEFAULT_COPY_AND_MOVE(SNorm)
4242

43-
virtual SNorm* clone() const = 0;
43+
virtual SNorm* clone() const FL_IOVERRIDE = 0;
4444
};
4545
}
4646
#endif /* FL_SNORM_H */

AI/FuzzyLite/fuzzylite/fl/norm/TNorm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace fl {
4040

4141
FL_DEFAULT_COPY_AND_MOVE(TNorm)
4242

43-
virtual TNorm* clone() const = 0;
43+
virtual TNorm* clone() const FL_IOVERRIDE = 0;
4444
};
4545
}
4646
#endif /* TNORM_H */

0 commit comments

Comments
 (0)