c++ function out of namespace calling to inside of namespace

前端 未结 0 1903
感情败类
感情败类 2020-12-15 09:40

I have a following code structure;

int aFunc(int a) {
    int b = a + 1;
    return b;
}

void bFunc(float c) {
    return;
}

namespace test {
    int aFunc(         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题