15,745,270 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Javascript questions
View C++ questions
View Python questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by jackyxinli (Top 4 by date)
jackyxinli
6-Jan-19 22:33pm
View
Thanks a lot. I find an article also in stackoverflow[https://stackoverflow.com/questions/12676190/how-to-call-a-template-member-function]
YES, template is more complicated than normal syntax in C++, so obscurity.
jackyxinli
2-Jan-19 19:30pm
View
Thank you first, I also find defination of function in boost library. May I ask you about this syntax where can I find in C++ specification?
jackyxinli
28-Dec-18 20:43pm
View
I tried command like blow:
g++ -Wall -std=c++11 -o delegate delegate.cpp
or
g++ -Wall -std=c++0x -o delegate delegate.cpp
do not work
jackyxinli
28-Dec-18 19:43pm
View
$ g++ -Wall -std=c++11 -o delegate delegate.cpp
delegate.cpp: In lambda function:
delegate.cpp:77:26: error: expected primary-expression before '(' token
auto _fun = f.target<R(*)(Args...)>();
^
delegate.cpp:77:28: error: expected primary-expression before ')' token
auto _fun = f.target<R(*)(Args...)>();
^
delegate.cpp:77:34: error: expected primary-expression before '...' token
auto _fun = f.target<R(*)(Args...)>();
^~~
delegate.cpp:77:40: error: expected primary-expression before ')' token
auto _fun = f.target<R(*)(Args...)>();
^
delegate.cpp: In lambda function:
delegate.cpp:97:57: error: expected primary-expression before '>' token
auto _fun = f.target<delegate_class_mem<C, R, Args...>>();
^~
delegate.cpp:97:60: error: expected primary-expression before ')' token
auto _fun = f.target<delegate_class_mem<C, R, Args...>>();
^
delegate.cpp: In member function 'delegate<R(Args ...)>::this_type& delegate<R(Args ...)>::operator+=(delegate<R(Args ...)>::func_type)':
delegate.cpp:117:31: error: expected primary-expression before '(' token
auto _func = (*it).target<R(*)(Args...)>();
^
delegate.cpp:117:33: error: expected primary-expression before ')' token
auto _func = (*it).target<R(*)(Args...)>();
^
delegate.cpp:117:39: error: expected primary-expression before '...' token
auto _func = (*it).target<R(*)(Args...)>();
^~~
delegate.cpp:117:45: error: expected primary-expression before ')' token
auto _func = (*it).target<R(*)(Args...)>();
^