function-declarations.txt 411 B

12345678910111213141516
  1. decltype(auto) look_up_a_string_1() { return lookup1(); }
  2. void look_up_a_string_2() { return lookup2(); }
  3. friend void A::showB(B x) {}
  4. friend void showB(B x) {}
  5. friend void showB(B::SomeType x) {}
  6. inline int add(int a, int b) {}
  7. int8t Get_Tile_Value() {}
  8. int8_t Get_Tile_Value() {}
  9. B::type test() {};
  10. // template
  11. boost::optional<application> handle_key(application state, key_code key, coord size);
  12. test();