Skip to content

Commit

Permalink
Spirit: fixing inspect errors
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.boost.org/svn/boost/trunk@82191 b8fc166d-592f-0410-95f2-cb63ce0dd405
  • Loading branch information
hkaiser committed Dec 23, 2012
1 parent a0a3cca commit 19c4d73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,4 +308,4 @@ namespace client { namespace code_gen
};
}}

#endif
#endif
2 changes: 1 addition & 1 deletion libs/spirit/repository/test/qi/keywords.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ main()
// no constraints
boost::fusion::vector<char,char,int> data;
BOOST_TEST( test_attr("c=1 a=a", kwd("a")[ '=' > char_] / kwd("b")[ '=' > char_] / kwd("c")['=' > int_], data, space));
BOOST_TEST( boost::fusion::at_c<0>(data) == 'a' );
BOOST_TEST( boost::fusion::at_c<0>(data) == 'a' );
BOOST_TEST( boost::fusion::at_c<1>(data) == 0 );
BOOST_TEST( boost::fusion::at_c<2>(data) == 1 );

Expand Down
2 changes: 1 addition & 1 deletion libs/spirit/test/karma/regression_real_0.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2012 Agustín K-ballo Berge
// Copyright (c) 2012 Agustin K-ballo Berge
// Copyright (c) 2001-2012 Hartmut Kaiser
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand Down

0 comments on commit 19c4d73

Please sign in to comment.