Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 209 Bytes

inline.md

File metadata and controls

15 lines (11 loc) · 209 Bytes

inline

Back{: .button}

// header.h

namespace test {
  // Definition has to be here so that this is available for other TU
  inline int add(int a, int b) {
    return a+b;
  }
}