From a9039e04e64e913b1cee1df271739d8234c9bd3a Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Fri, 27 Sep 2019 20:37:48 -0700 Subject: [PATCH] Fix AT_SPECIALIZE_* endian references --- include/athena/DNAOp.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/athena/DNAOp.hpp b/include/athena/DNAOp.hpp index bb10f83..f043038 100644 --- a/include/athena/DNAOp.hpp +++ b/include/athena/DNAOp.hpp @@ -1148,29 +1148,29 @@ void __BinarySizeProp64(const T& obj, size_t& s) { #define AT_SUBSPECIALIZE_DNA(...) \ template <> \ template <> \ - void __VA_ARGS__::Enumerate::BinarySize>(typename BinarySize::StreamT & s) { \ + void __VA_ARGS__::Enumerate::BinarySize>(typename BinarySize::StreamT & s) { \ _binarySize(s); \ } \ template <> \ template <> \ - void __VA_ARGS__::Enumerate::Read>(typename Read::StreamT & r) { \ + void __VA_ARGS__::Enumerate::Read>(typename Read::StreamT & r) { \ _read(r); \ } \ template <> \ template <> \ - void __VA_ARGS__::Enumerate::Write>(typename Write::StreamT & w) { \ + void __VA_ARGS__::Enumerate::Write>(typename Write::StreamT & w) { \ _write(w); \ } #define AT_SUBSPECIALIZE_DNA_YAML(...) \ template <> \ template <> \ - void __VA_ARGS__::Enumerate::ReadYaml>(typename ReadYaml::StreamT & r) { \ + void __VA_ARGS__::Enumerate::ReadYaml>(typename ReadYaml::StreamT & r) { \ _read(r); \ } \ template <> \ template <> \ - void __VA_ARGS__::Enumerate::WriteYaml>(typename WriteYaml::StreamT & w) { \ + void __VA_ARGS__::Enumerate::WriteYaml>(typename WriteYaml::StreamT & w) { \ _write(w); \ } \ AT_SUBSPECIALIZE_DNA(__VA_ARGS__)