1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

fixed a compile error in arepo plugin when HAVEHDF5=no

This commit is contained in:
Oliver Hahn 2013-08-08 15:23:12 +02:00
parent 69236a2032
commit a17f70e119

View file

@ -8,12 +8,14 @@
* Plugin: Dylan Nelson (dnelson@cfa.harvard.edu)
*/
#ifndef HAVE_HDF5
#ifndef HAVEHDF5
#include "output.hh"
class arepo_output_plugin : public output_plugin
{
public:
arepo_output_plugin( config_file& cf ) ) : output_plugin( cf ) )
arepo_output_plugin( config_file& cf ) : output_plugin( cf )
{
std::cerr << "\n Arepo output requires HAVE_HDF5 (otherwise use gadget2 format)!\n\n";
exit(0);