bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
config_hdf.h
1
2// -*- C++ -*-
3
4#ifndef _config_hdf_h
5#define _config_hdf_h 1
6
7#ifdef HAVE_CONFIG_H
8#include <config.h>
9#endif
10
11/* GNU gcc/g++ provides a way to mark variables as unused */
12
13#if defined(__GNUG__) || defined(__GNUC__)
14#define not_used __attribute__ ((unused))
15#else
16#define not_used
17#endif
18
19#endif /* _config_hdf_h */