cc_project_template_cmake

A cmake, ninja, and googletest-based C++ project template
git clone https://git.bracken.jp/cc_project_template_cmake.git
Log | Files | Refs | Submodules | README | LICENSE

bar.cc (54B)


      1 #include "bar.h"
      2 
      3 int Bar(int x) {
      4   return x - 1;
      5 }
      6