diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-23 23:43:11 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-23 23:43:11 -0400 |
commit | b1cc0118c49b708c7f3f4d19f37102784d218347 (patch) | |
tree | 935b1da4241fa2aa5264e5b02d8d4bb9eb63cb88 /lib/include | |
parent | d50e76587fb1bbba228b77953b0ac877957a5f58 (diff) | |
download | fuse_networks-b1cc0118c49b708c7f3f4d19f37102784d218347.tar.gz fuse_networks-b1cc0118c49b708c7f3f4d19f37102784d218347.tar.bz2 fuse_networks-b1cc0118c49b708c7f3f4d19f37102784d218347.zip |
lost a dependency header
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/current_info.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/include/current_info.hpp b/lib/include/current_info.hpp index a84fb5b..791afc7 100644 --- a/lib/include/current_info.hpp +++ b/lib/include/current_info.hpp @@ -1,10 +1,10 @@ #pragma once +#include <array> #include <vector> typedef struct current_info { std::array<double, 2> conductivity; std::vector<double> currents; } current_info; - |