From f03bb5ec2e2113ba776034685d105591fb1af02a Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sat, 28 Jul 2018 14:40:51 +0900 Subject: [PATCH] test: Removed unnecessary semi-colon --- test/sequence/adapt_assoc_struct.cpp | 2 +- test/sequence/adapt_assoc_struct_named.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sequence/adapt_assoc_struct.cpp b/test/sequence/adapt_assoc_struct.cpp index 07cab357..8d59acc0 100644 --- a/test/sequence/adapt_assoc_struct.cpp +++ b/test/sequence/adapt_assoc_struct.cpp @@ -72,7 +72,7 @@ namespace ns #endif struct empty_struct {}; -BOOST_FUSION_ADAPT_ASSOC_STRUCT(empty_struct,); +BOOST_FUSION_ADAPT_ASSOC_STRUCT(empty_struct,) int main() diff --git a/test/sequence/adapt_assoc_struct_named.cpp b/test/sequence/adapt_assoc_struct_named.cpp index 4fbfe8ca..585942cd 100644 --- a/test/sequence/adapt_assoc_struct_named.cpp +++ b/test/sequence/adapt_assoc_struct_named.cpp @@ -53,7 +53,7 @@ namespace ns #endif struct empty_struct {}; -BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED(empty_struct, renamed_empty_struct,); +BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED(empty_struct, renamed_empty_struct,) int main()