@@ -181,10 +181,10 @@ void ADIOS2IOHandlerImpl::init(json::TracingJSON cfg)
181181 m_schema = auxiliary::getEnvNum (" OPENPMD2_ADIOS2_SCHEMA" , m_schema);
182182}
183183
184- std::optional<std::vector<ADIOS2IOHandlerImpl::ParameterizedOperator> >
184+ std::optional<std::vector<ADIOS2IOHandlerImpl::ParameterizedOperator>>
185185ADIOS2IOHandlerImpl::getOperators (json::TracingJSON cfg)
186186{
187- using ret_t = std::optional<std::vector<ParameterizedOperator> >;
187+ using ret_t = std::optional<std::vector<ParameterizedOperator>>;
188188 std::vector<ParameterizedOperator> res;
189189 if (!cfg.json ().contains (" dataset" ))
190190 {
@@ -237,7 +237,7 @@ ADIOS2IOHandlerImpl::getOperators(json::TracingJSON cfg)
237237 return std::make_optional (std::move (res));
238238}
239239
240- std::optional<std::vector<ADIOS2IOHandlerImpl::ParameterizedOperator> >
240+ std::optional<std::vector<ADIOS2IOHandlerImpl::ParameterizedOperator>>
241241ADIOS2IOHandlerImpl::getOperators ()
242242{
243243 return getOperators (m_config);
@@ -1875,7 +1875,7 @@ namespace detail
18751875 }
18761876
18771877 template <typename T>
1878- void AttributeTypes<std::vector<T> >::createAttribute(
1878+ void AttributeTypes<std::vector<T>>::createAttribute(
18791879 adios2::IO &IO,
18801880 adios2::Engine &engine,
18811881 detail::BufferedAttributeWrite ¶ms,
@@ -1898,7 +1898,7 @@ namespace detail
18981898 }
18991899
19001900 template <typename T>
1901- void AttributeTypes<std::vector<T> >::readAttribute(
1901+ void AttributeTypes<std::vector<T>>::readAttribute(
19021902 detail::PreloadAdiosAttributes const &preloadedAttributes,
19031903 std::string name,
19041904 std::shared_ptr<Attribute::resource> resource)
@@ -1924,7 +1924,7 @@ namespace detail
19241924 }
19251925 }
19261926
1927- void AttributeTypes<std::vector<std::string> >::createAttribute(
1927+ void AttributeTypes<std::vector<std::string>>::createAttribute(
19281928 adios2::IO &IO,
19291929 adios2::Engine &engine,
19301930 detail::BufferedAttributeWrite ¶ms,
@@ -1969,7 +1969,7 @@ namespace detail
19691969 attr, params.bufferForVecString .data (), adios2::Mode::Deferred);
19701970 }
19711971
1972- void AttributeTypes<std::vector<std::string> >::readAttribute(
1972+ void AttributeTypes<std::vector<std::string>>::readAttribute(
19731973 detail::PreloadAdiosAttributes const &preloadedAttributes,
19741974 std::string name,
19751975 std::shared_ptr<Attribute::resource> resource)
@@ -2082,7 +2082,7 @@ namespace detail
20822082 }
20832083
20842084 template <typename T, size_t n>
2085- void AttributeTypes<std::array<T, n> >::createAttribute(
2085+ void AttributeTypes<std::array<T, n>>::createAttribute(
20862086 adios2::IO &IO,
20872087 adios2::Engine &engine,
20882088 detail::BufferedAttributeWrite ¶ms,
@@ -2104,7 +2104,7 @@ namespace detail
21042104 }
21052105
21062106 template <typename T, size_t n>
2107- void AttributeTypes<std::array<T, n> >::readAttribute(
2107+ void AttributeTypes<std::array<T, n>>::readAttribute(
21082108 detail::PreloadAdiosAttributes const &preloadedAttributes,
21092109 std::string name,
21102110 std::shared_ptr<Attribute::resource> resource)
0 commit comments