mirror of
https://github.com/abseil/abseil-cpp.git
synced 2026-06-04 12:07:05 +08:00
Remove stray plus operator in cleanup_internal::Storage
PiperOrigin-RevId: 720611342 Change-Id: I0c4253cb5eff9afe60cf922bd6df0300bc6a65fc
This commit is contained in:
committed by
Copybara-Service
parent
9cf0a2f842
commit
da2b12d7c9
@@ -70,7 +70,7 @@ class Storage {
|
||||
|
||||
Storage& operator=(const Storage& other) = delete;
|
||||
|
||||
void* GetCallbackBuffer() { return static_cast<void*>(+callback_buffer_); }
|
||||
void* GetCallbackBuffer() { return static_cast<void*>(callback_buffer_); }
|
||||
|
||||
Callback& GetCallback() {
|
||||
return *reinterpret_cast<Callback*>(GetCallbackBuffer());
|
||||
|
||||
Reference in New Issue
Block a user