This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
8516
/
Test
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
4e560ce7ca
Gałęzie
Tagi
master
Test
/
EVSE
/
GPL
/
cmake-3.11.0
/
Tests
/
CompileFeatures
/
cxx_delegating_constructors.cpp
cxx_delegating_constructors.cpp
115 B
Historia
Czysty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Foo
{
public:
Foo(int i);
Foo(double d)
: Foo(static_cast<int>(d))
{
}
private:
int m_i;
};