diff --git a/frameworks/buffer_manager.h b/frameworks/buffer_manager.h index c1d3a47..2d17f52 100644 --- a/frameworks/buffer_manager.h +++ b/frameworks/buffer_manager.h @@ -99,7 +99,7 @@ private: struct BufferKey { int32_t key; uint64_t phyAddr; - bool operator< (const BufferKey &x) const + bool operator < (const BufferKey &x) const { return (key < x.key) || (key == x.key && phyAddr < x.phyAddr); }