| 1 | *** parsers.cpp~ Sun Apr 8 12:02:26 2012
|
|---|
| 2 | --- parsers.cpp Mon Jan 13 11:16:35 2014
|
|---|
| 3 | ***************
|
|---|
| 4 | *** 157,163 ****
|
|---|
| 5 |
|
|---|
| 6 | template
|
|---|
| 7 | BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<char>
|
|---|
| 8 | ! parse_config_file(const char* filename,
|
|---|
| 9 | const options_description& desc,
|
|---|
| 10 | bool allow_unregistered);
|
|---|
| 11 |
|
|---|
| 12 | --- 157,163 ----
|
|---|
| 13 |
|
|---|
| 14 | template
|
|---|
| 15 | BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<char>
|
|---|
| 16 | ! parse_config_file<char>(const char* filename,
|
|---|
| 17 | const options_description& desc,
|
|---|
| 18 | bool allow_unregistered);
|
|---|
| 19 |
|
|---|
| 20 | ***************
|
|---|
| 21 | *** 164,170 ****
|
|---|
| 22 | #ifndef BOOST_NO_STD_WSTRING
|
|---|
| 23 | template
|
|---|
| 24 | BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<wchar_t>
|
|---|
| 25 | ! parse_config_file(const char* filename,
|
|---|
| 26 | const options_description& desc,
|
|---|
| 27 | bool allow_unregistered);
|
|---|
| 28 | #endif
|
|---|
| 29 | --- 164,170 ----
|
|---|
| 30 | #ifndef BOOST_NO_STD_WSTRING
|
|---|
| 31 | template
|
|---|
| 32 | BOOST_PROGRAM_OPTIONS_DECL basic_parsed_options<wchar_t>
|
|---|
| 33 | ! parse_config_file<wchar_t>(const char* filename,
|
|---|
| 34 | const options_description& desc,
|
|---|
| 35 | bool allow_unregistered);
|
|---|
| 36 | #endif
|
|---|