Remove virtual keyword from method that doesn't need to be virtual.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34817 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-03-01 23:20:52 +00:00
parent 35fa43907e
commit dbf6d37b0b

View File

@ -130,7 +130,7 @@ public:
/// This is just a convenience method to make client code smaller for a
/// common case.
/// @brief Determine if the value is one.
virtual bool isUnitValue() const {
bool isUnitValue() const {
return Val == 1;
}