From: Chris Koeritz Date: Fri, 20 Jan 2012 13:06:47 +0000 (-0500) Subject: fixed an oops in the example application. X-Git-Tag: 2.140.90~1656^2~32 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=a5cb8184848bac3d3c484a72a90ec1ff08919288;p=feisty_meow.git fixed an oops in the example application. --- 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