From a5cb8184848bac3d3c484a72a90ec1ff08919288 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 20 Jan 2012 08:06:47 -0500 Subject: [PATCH] fixed an oops in the example application. --- .../example_application/example_application.cpp | 9 ++++++++- scripts/generator/bootstrap_build.sh | 3 --- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/core/applications/example_application/example_application.cpp b/core/applications/example_application/example_application.cpp index f82f2f78..c6a27913 100644 --- a/core/applications/example_application/example_application.cpp +++ b/core/applications/example_application/example_application.cpp @@ -65,7 +65,7 @@ public: virtual int execute(); //!< the root of the program's activity. - int print_instructions() { LOG("no instructions at this time."); return 1; } + int print_instructions(); //!< describes the available command line options for this program. private: @@ -82,6 +82,13 @@ application_example::application_example() application_example::~application_example() {} +int application_example::print_instructions() +{ + FUNCDEF("print_instructions"); + LOG("no instructions at this time."); + return 1; +} + void application_example::handle_startup() { FUNCDEF("handle_startup"); diff --git a/scripts/generator/bootstrap_build.sh b/scripts/generator/bootstrap_build.sh index 1e0654fd..48245eae 100644 --- a/scripts/generator/bootstrap_build.sh +++ b/scripts/generator/bootstrap_build.sh @@ -156,9 +156,6 @@ bash "$BUILD_SCRIPTS_DIR/whack_build.sh" clean # make this again so no one gets cranky. mkdir -p "$LOGS_DIR" -echo "after removing and making dir again, it's here '$LOGS_DIR'..." -ls -al $LOGS_DIR - toolset_names=(makedep value_tagger version_stamper vsts_version_fixer write_build_config short_path sleep_ms zap_process playsound create_guid) if [ -z "$SAVE_BINARIES" ]; then -- 2.34.1