2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-26 18:52:23 +00:00
Files
parser/test/basic_structures.cpp
Zach Laine 2b69ae79c8 Effectively constrain all the parser templates by enforcing their use of
Spirit's position_iterator<>.  Also, give each parser a "_t" suffix.
2017-05-07 15:08:34 -05:00

15 lines
430 B
C++

/**
* Copyright (C) 2017 Zach Laine
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include <yaml/parser/basic_structures_def.hpp>
#include <iostream>
#include <fstream>
#include <string>
typedef std::string::const_iterator char_iterator_t;
template struct yaml::parser::basic_structures_t<char_iterator_t>;