diff options
Diffstat (limited to 'include/vcl/vclptr.hxx')
-rw-r--r-- | include/vcl/vclptr.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/vclptr.hxx b/include/vcl/vclptr.hxx index 7c794933da3e..0910257c49f5 100644 --- a/include/vcl/vclptr.hxx +++ b/include/vcl/vclptr.hxx @@ -35,7 +35,7 @@ class VclReferenceBase; -namespace vcl { namespace detail { +namespace vcl::detail { template<typename> constexpr bool isIncompleteOrDerivedFromVclReferenceBase(...) { return true; } @@ -44,7 +44,7 @@ template<typename T> constexpr bool isIncompleteOrDerivedFromVclReferenceBase( int (*)[sizeof(T)]) { return std::is_base_of<VclReferenceBase, T>::value; } -}; }; // namespace detail, namespace vcl +} // namespace vcl::detail /** * A thin wrapper around rtl::Reference to implement the acquire and dispose semantics we want for references to vcl::Window subclasses. |