| Index: src/lazy-instance.h
|
| diff --git a/src/lazy-instance.h b/src/lazy-instance.h
|
| index 7534d9bc0c19495879747af8c98ceccfd20de331..4beb55c0a291b05cf91bde23ffd8af03f1be9f6a 100644
|
| --- a/src/lazy-instance.h
|
| +++ b/src/lazy-instance.h
|
| @@ -191,7 +191,7 @@ struct LazyInstanceImpl {
|
| &once_,
|
| // Casts to void* are needed here to avoid breaking strict aliasing
|
| // rules.
|
| - reinterpret_cast<void (*)(void*)>(&InitInstance),
|
| + reinterpret_cast<void(*)(void*)>(&InitInstance), // NOLINT
|
| reinterpret_cast<void*>(&storage_));
|
| }
|
|
|
|
|