Search
Refine Search Results
Status
Votes
Total Votes (at least)
Workarounds
Total Workarounds (at least)
Validations
Total Validations (at least)
Comments
Total Comments (at least)
Time
Created in the last (days)
Updated in the last (days)
Product Search Results
Sort By:
You searched for: items submitted by summerlight for this product (signing in could show even more results)
Showing 1 - 5 of 5 Previous 1 Next

1
0
Sign in
to vote
Below code is not compiled because template argument is not introduced into lambda function scope. template<typename T> struct test { static void (*func)(); }; template<typename T> void (*test<T…
Created on 5/11/2013 (updated 4 days ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 786788  | 
Active
1
0
Sign in
to vote
#include <string> #include <cstdio> struct test { std::string a; }; int main() { test a; a.a = "test"; test b = std::move(a); printf("%s, %s", a.a.c_str(), b.a.c_str()); } Above code is t…
Created on 4/30/2013 (updated 5 days ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 785972  | 
Closed
as Deferred Help for as Deferred
1
0
Sign in
to vote
struct test { typedef test alias; test() : a(0) {} test(test&) : alias() {} int a; }; int main() { } Delegating constructor call via indirect typedef alias as above code raises compiler error…
Created on 11/19/2012 (updated 11 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 771584  | 
Closed
as Fixed Help for as Fixed
2
0
Sign in
to vote
ctp compiler crashes on below code template<typename... T> struct a { template<typename head, typename... remainder> void init() { } template<> void init() { } }; int main() { } Though abo…
Created on 11/18/2012 (updated 23 weeks ago) | 0 validations | 0 workarounds | 5 comments | feedback id: 771522  | 
Active
2
0
Sign in
to vote
CTP compiler fails to compile legimate variadic template code. See below code. #include <type_traits> #include <string> struct test{}; namespace ns { struct test{}; } template<typename T> stru…
Created on 11/15/2012 (updated 16 weeks ago) | 0 validations | 0 workarounds | 4 comments | feedback id: 771311  | 
Closed
Showing 1 - 5 of 5 Previous 1 Next