Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | 959be2660e73043b25da3b2b833b62e46e02e754 |
|---|---|
| Date: | 2009-10-25 02:51:47 |
| User: | stephan |
| Comment: | fixed a missing return value. |
Tags And Properties
- branch=trunk inherited from [d45e7467f2]
- sym-trunk inherited from [d45e7467f2]
Changes
Changes to parsepp.hpp
| Old (f67998f8636f5364) | New (d1a8cb81036ee0e2) | |||
|---|---|---|---|---|
| 1 | #ifndef s11n_net_PARSEPP_HPP_INCLUDED | 1 | #ifndef s11n_net_PARSEPP_HPP_INCLUDED | |
| 2 | #define s11n_net_PARSEPP_HPP_INCLUDED | 2 | #define s11n_net_PARSEPP_HPP_INCLUDED | |
| 3 | 3 | |||
| 4 | #include <map> | 4 | #include <map> | |
| 5 | #include <string> | 5 | #include <string> | |
| 1114 hidden lines | ||||
| 1120 | { | 1120 | { | |
| 1121 | typedef a_actions_impl type; | 1121 | typedef a_actions_impl type; | |
| 1122 | template <typename ClientState> | 1122 | template <typename ClientState> | |
| 1123 | inline static bool matched( parser_state &, std::string const & m, ClientState & ) | 1123 | inline static bool matched( parser_state &, std::string const & m, ClientState & ) | |
| 1124 | { | 1124 | { | |
| 1125 | return; | | | 1125 | return false; |
| 1126 | } | 1126 | } | |
| 1127 | }; | 1127 | }; | |
| 1128 | 1128 | |||
| 1129 | /** Internal implementation of a_actions_impl<>. */ | 1129 | /** Internal implementation of a_actions_impl<>. */ | |
| 1130 | template <typename Head, typename Tail> | 1130 | template <typename Head, typename Tail> | |
| 650 hidden lines | ||||
| 1781 | 1781 | |||
| 1782 | 1782 | |||
| 1783 | } // namespace | 1783 | } // namespace | |
| 1784 | 1784 | |||
| 1785 | #endif // s11n_net_PARSEPP_HPP_INCLUDED | 1785 | #endif // s11n_net_PARSEPP_HPP_INCLUDED | |