OILS / cpp / translation_stubs.h View on Github | oilshell.org

11 lines, 5 significant
1// cpp/translation_stubs.h
2
3#ifndef CPP_TRANSLATION_STUBS_H
4#define CPP_TRANSLATION_STUBS_H
5
6// Declared in mycpp/comparators.h
7inline bool items_equal(id_kind_asdl::Kind left, id_kind_asdl::Kind right) {
8 return left == right;
9}
10
11#endif // CPP_TRANSLATION_STUBS_H