summaryrefslogtreecommitdiffhomepage
path: root/include/LibC++
diff options
context:
space:
mode:
Diffstat (limited to 'include/LibC++')
-rw-r--r--include/LibC++/new.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/LibC++/new.h b/include/LibC++/new.h
index 23bfa50..9a7d7da 100644
--- a/include/LibC++/new.h
+++ b/include/LibC++/new.h
@@ -44,8 +44,8 @@ void operator _placement_delete(void*);
/// \note This should NOT fail, failure to meet the conditions will cause the program's state to be aborted.
/// \brief Set the placement policy of future memory allocations.
-template <class PlaceableType>
-void set_placement_policy(const PlaceableType&) noexcept;
+template <class PlaceableCallable>
+void set_placement_policy(const PlaceableCallable&) noexcept;
void* operator new(size_t, const nothrow_t&) noexcept;
void* operator new(size_t, void*) noexcept;