From ac59bb7564d61969a90f30a2c419e374db002dfd Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Thu, 22 Apr 2021 17:05:12 -0400 Subject: [PATCH] add array header --- include/openmc/array.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/openmc/array.h diff --git a/include/openmc/array.h b/include/openmc/array.h new file mode 100644 index 000000000..f8e49ccfd --- /dev/null +++ b/include/openmc/array.h @@ -0,0 +1,18 @@ +#ifndef OPENMC_ARRAY_H +#define OPENMC_ARRAY_H + +/* + * See notes in include/openmc/vector.h + * + * In an implementation of OpenMC that uses an accelerator, we may remove the + * use of array below and replace it with a custom + * implementation behaving as expected on the device. + */ + +#include + +namespace openmc { +using std::array; +} // namespace openmc + +#endif // OPENMC_ARRAY_H