This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
You've already forked CMake
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
c4e672358c
CMake
/
Tests
/
CompileFeatures
/
cxx_delegating_constructors...
16 lines
116 B
C++
Raw
Blame
History
class
Foo
{
public
:
Foo
(
int
i
)
;
Foo
(
double
d
)
:
Foo
(
static_cast
<
int
>
(
d
)
)
{
}
private
:
int
m_i
;
}
;
Reference in New Issue
View Git Blame
Copy Permalink