cc_project_template_bazel

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

foo.cc (95B)


      1 #include "foo.h"
      2 
      3 namespace foobar {
      4 
      5 int Foo(int x) { return x + 1; }
      6 
      7 }  // namespace foobar