mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
16 lines
116 B
C++
16 lines
116 B
C++
|
|
class Foo
|
|
{
|
|
public:
|
|
Foo(int i);
|
|
|
|
Foo(double d)
|
|
: Foo(static_cast<int>(d))
|
|
{
|
|
|
|
}
|
|
|
|
private:
|
|
int m_i;
|
|
};
|