fixed an oops in the example application.
authorChris Koeritz <fred@gruntose.com>
Fri, 20 Jan 2012 13:06:47 +0000 (08:06 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 20 Jan 2012 13:06:47 +0000 (08:06 -0500)
core/applications/example_application/example_application.cpp
scripts/generator/bootstrap_build.sh

index f82f2f7873405e6900e8091bb933aac764ea6935..c6a27913e39d4f197ed2e3c35569fc9b322cc8e9 100644 (file)
@@ -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");
index 1e0654fdfe11a58ec354b9061320f895b0789bf6..48245eae58ea5f2272a502544364e9fe5cb8610a 100644 (file)
@@ -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