1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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

llvm-svn: 34817
This commit is contained in:
Reid Spencer 2007-03-01 23:20:52 +00:00
parent ee77d22f26
commit c5d33cef76

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;
}