Skip to content

Commit

Permalink
pw_allocator: Remove unnecessary template
Browse files Browse the repository at this point in the history
Upstreams cl/649061659. This change prevents a break from occurring when
-Wmissing-template-arg-list-after-template-kw is enabled

Change-Id: Ie1668a5199f3e48b625796f7d2f8149001dcb6bd
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/220111
Lint: Lint 🤖 <[email protected]>
Commit-Queue: Auto-Submit <[email protected]>
Pigweed-Auto-Submit: Ted Pudlik <[email protected]>
Reviewed-by: Aaron Green <[email protected]>
  • Loading branch information
tpudlik authored and CQ Bot Account committed Jul 8, 2024
1 parent 6a928e5 commit c434a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pw_allocator/public/pw_allocator/size_reporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class SizeReporter final {
Foo* foo = allocator.template New<Foo>();

// Measure `Delete`.
allocator.template Delete(foo);
allocator.Delete(foo);

// Measure `MakeUnique`.
UniquePtr<Foo> unique_foo = allocator.template MakeUnique<Foo>();
Expand Down

0 comments on commit c434a08

Please sign in to comment.