From a31664dd6145c033ac625e01513ba606c12612b8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 8 May 2001 11:37:04 +0000 Subject: [PATCH] removed spurious semicolon [SVN r10066] --- examples/trivial_destructor_example.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/trivial_destructor_example.cpp b/examples/trivial_destructor_example.cpp index 32f4dbf..7923e0f 100644 --- a/examples/trivial_destructor_example.cpp +++ b/examples/trivial_destructor_example.cpp @@ -64,7 +64,7 @@ void do_destroy_array(T* first, T* last) } } -}; // namespace detail +} // namespace detail template inline void destroy_array(T* p1, T* p2) @@ -165,3 +165,4 @@ int cpp_main(int argc, char* argv[]) +