11 lines
69 B
C++
11 lines
69 B
C++
|
|
void someFunc(int*)
|
|
{
|
|
|
|
}
|
|
|
|
void otherFunc()
|
|
{
|
|
someFunc(nullptr);
|
|
}
|