Skip to content

Commit

Permalink
Fix build with clang 3.6
Browse files Browse the repository at this point in the history
This is backported commit 509ccac9dd53932b158ee10b47e95d495deb3fd9
from fuzzylite
  • Loading branch information
AMDmi3 committed Apr 9, 2015
1 parent d32461d commit eab0b1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AI/FuzzyLite/fuzzylite/fl/norm/SNorm.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace fl {

FL_DEFAULT_COPY_AND_MOVE(SNorm)

virtual SNorm* clone() const = 0;
virtual SNorm* clone() const FL_IOVERRIDE = 0;
};
}
#endif /* FL_SNORM_H */
Expand Down
2 changes: 1 addition & 1 deletion AI/FuzzyLite/fuzzylite/fl/norm/TNorm.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace fl {

FL_DEFAULT_COPY_AND_MOVE(TNorm)

virtual TNorm* clone() const = 0;
virtual TNorm* clone() const FL_IOVERRIDE = 0;
};
}
#endif /* TNORM_H */
Expand Down

0 comments on commit eab0b1e

Please sign in to comment.