Skip to content

Commit

Permalink
Fix build, remove hello
Browse files Browse the repository at this point in the history
  • Loading branch information
mirams committed Jun 27, 2024
1 parent 3644780 commit 0b1b188
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions apps/src/ExampleApp_OpenVT.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (c) 2005-2023, University of Oxford.
Copyright (c) 2005-2024, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
Expand Down Expand Up @@ -48,8 +48,6 @@ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "PetscTools.hpp"
#include "PetscException.hpp"

#include "Hello_OpenVT.hpp"

int main(int argc, char *argv[])
{
// This sets up PETSc and prints out copyright information, etc.
Expand All @@ -73,8 +71,7 @@ int main(int argc, char *argv[])
if (PetscTools::AmMaster())
{
std::string arg_i(argv[i]);
Hello_OpenVT world(arg_i);
std::cout << "Argument " << i << " is " << world.GetMessage() << std::endl << std::flush;
std::cout << "Argument " << i << " is " << arg_i << std::endl << std::flush;
}
}
}
Expand Down

0 comments on commit 0b1b188

Please sign in to comment.