Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Aug 29, 2024
1 parent 5b6b5c0 commit ea55ef4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/nwb/NWBFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ Status NWBFile::createFileStructure()
io->createGroup("/specifications");
io->createReferenceAttribute("/specifications", "/", ".specloc");

cacheSpecifications("core", AQNWB::SPEC::CORE::version, AQNWB::SPEC::CORE::specVariables);
cacheSpecifications(
"core", AQNWB::SPEC::CORE::version, AQNWB::SPEC::CORE::specVariables);
cacheSpecifications("hdmf-common",
AQNWB::SPEC::HDMF_COMMON::version,
AQNWB::SPEC::HDMF_COMMON::specVariables);
Expand Down
2 changes: 1 addition & 1 deletion src/spec/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ constexpr std::array<std::pair<std::string_view, std::string_view>, 13>
{"nwb.ophys", nwb_ophys},
{"nwb.retinotopy", nwb_retinotopy},
{"namespace", namespaces}}};
} // namespace AQNWB::spec::core
} // namespace AQNWB::SPEC::CORE
2 changes: 1 addition & 1 deletion src/spec/hdmf_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ constexpr std::array<std::pair<std::string_view, std::string_view>, 4>
{"table", table},
{"sparse", sparse},
{"namespace", namespaces}}};
} // namespace AQNWB::spec::hdmf_common
} // namespace AQNWB::SPEC::HDMF_COMMON
2 changes: 1 addition & 1 deletion src/spec/hdmf_experimental.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ constexpr std::array<std::pair<std::string_view, std::string_view>, 3>
specVariables {{{"experimental", experimental},
{"resources", resources},
{"namespace", namespaces}}};
} // namespace AQNWB::spec::hdmf_experimental
} // namespace AQNWB::SPEC::HDMF_EXPERIMENTAL

0 comments on commit ea55ef4

Please sign in to comment.