Remove stray plus operator in cleanup_internal::Storage

PiperOrigin-RevId: 720611342
Change-Id: I0c4253cb5eff9afe60cf922bd6df0300bc6a65fc
This commit is contained in:
Abseil Team
2025-01-28 09:53:04 -08:00
committed by Copybara-Service
parent 9cf0a2f842
commit da2b12d7c9

View File

@@ -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());