Skip to content
Snippets Groups Projects
Commit ac572b51 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[BUGFIX] fixed ambiguous symbol

parent f856309f
No related merge requests found
......@@ -36,8 +36,7 @@
#include <iostream>
namespace walberla {
using namespace walberla::mesa_pd;
namespace mesa_pd {
class ParticleAccessorWithShape : public data::ParticleAccessor
{
......@@ -120,9 +119,10 @@ int main( int argc, char ** argv )
return EXIT_SUCCESS;
}
} //namespace mesa_pd
} //namespace walberla
int main( int argc, char ** argv )
{
return walberla::main(argc, argv);
return walberla::mesa_pd::main(argc, argv);
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment