diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 12:21:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 12:25:20 +0100 |
commit | fd95c8950c674ad0935f2583f8fb209d873a73b7 (patch) | |
tree | a38d0c05e00b940271d087422e50c796d0deb174 /odk | |
parent | 15913f9ae1b8753a1fab894667b7543e08210b04 (diff) |
Fix signature of main function
Change-Id: Id6a4968b15445f04e788eaa6ca950707d5311e66
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx index c24e4e394dd7..f92731d37d88 100644 --- a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx +++ b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/object_lifetime.cxx @@ -62,7 +62,7 @@ void simple_object_creation_and_destruction() } -int main( char * argv[] ) +int main() { simple_object_creation_and_destruction(); return 0; |