mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 06:25:30 -04:00
add array header
This commit is contained in:
parent
ad4e1c9f4a
commit
ac59bb7564
1 changed files with 18 additions and 0 deletions
18
include/openmc/array.h
Normal file
18
include/openmc/array.h
Normal file
|
|
@ -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 <array>
|
||||
|
||||
namespace openmc {
|
||||
using std::array;
|
||||
} // namespace openmc
|
||||
|
||||
#endif // OPENMC_ARRAY_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue