mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[typedef] _t
This commit is contained in:
parent
7cfca54b59
commit
8c7223882a
@ -120,10 +120,10 @@ preg_replace(std::string & pattern, const char *replacement, std::string & subje
|
|||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
typedef std::string (*my_callback)(const std::smatch &m);
|
typedef std::string (*my_callback_t)(const std::smatch &m);
|
||||||
|
|
||||||
std::string
|
std::string
|
||||||
preg_replace_callback(std::string & pattern, my_callback callback, std::string & subject)
|
preg_replace_callback(std::string & pattern, my_callback_t callback, std::string & subject)
|
||||||
{
|
{
|
||||||
return std::regex_replace2(subject, std::regex(pattern), callback);
|
return std::regex_replace2(subject, std::regex(pattern), callback);
|
||||||
}
|
}
|
||||||
@ -435,10 +435,10 @@ next_year(const std::smatch& matches)
|
|||||||
return os.str();
|
return os.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef const char *test[2];
|
typedef const char *test_t[2];
|
||||||
|
|
||||||
void
|
void
|
||||||
tests()
|
tests_t()
|
||||||
{
|
{
|
||||||
test provider[] = {
|
test provider[] = {
|
||||||
{"div", "//div"},
|
{"div", "//div"},
|
||||||
|
Loading…
Reference in New Issue
Block a user