lexer.cpp 704 B

1234567891011121314151617
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Hartmut Kaiser
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. =============================================================================*/
  6. #if defined(_MSC_VER)
  7. # pragma warning(disable: 4345)
  8. #endif
  9. #include "config.hpp"
  10. #include "lexer_def.hpp"
  11. typedef std::string::const_iterator base_iterator_type;
  12. template client::lexer::conjure_tokens<base_iterator_type>::conjure_tokens();
  13. template bool client::lexer::conjure_tokens<base_iterator_type>::add_(
  14. std::string const&, int);