forked from OSchip/llvm-project
parent
570243b5d9
commit
5d68663bfc
|
@ -132,6 +132,10 @@ namespace clang {
|
|||
CharUnits operator- (const CharUnits &Other) const {
|
||||
return CharUnits(Quantity - Other.Quantity);
|
||||
}
|
||||
CharUnits operator- () const {
|
||||
return CharUnits(-Quantity);
|
||||
}
|
||||
|
||||
|
||||
// Conversions.
|
||||
|
||||
|
|
Loading…
Reference in New Issue