From e5c1e12a66a75eba1c77f99733ef6b6492078024 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sun, 28 Nov 2004 04:44:21 +0000 Subject: [PATCH] merge RC_1_32_0 fixes [SVN r26333] --- scoped_ptr.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoped_ptr.htm b/scoped_ptr.htm index 881c402..f3a0155 100644 --- a/scoped_ptr.htm +++ b/scoped_ptr.htm @@ -115,7 +115,7 @@ class MyClass { int add_one() { return ++*ptr; } }; -void main() +int main() { boost::scoped_ptr<Shoe> x(new Shoe); MyClass my_instance;