diff options
-rw-r--r-- | absl/container/internal/layout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/internal/layout.h b/absl/container/internal/layout.h index 72c14112..d42651a2 100644 --- a/absl/container/internal/layout.h +++ b/absl/container/internal/layout.h @@ -85,9 +85,9 @@ // generate optimal code. To help the compiler do that in more cases, you can // specify the fixed sizes using `WithStaticSizes`. This ensures that all // computations that can be performed at compile time are indeed performed at -// compile time. E.g.: +// compile time. Note that sometimes the `template` keyword is needed. E.g.: // -// using SL = L::WithStaticSizes<1, 1>; +// using SL = L::template WithStaticSizes<1, 1>; // // void Use(unsigned char* p) { // // First, extract N and M. |