Skip to content

Commit

Permalink
[cpp] Add missing Obj header to global object
Browse files Browse the repository at this point in the history
kArithSpec is a wrapper for generated data.
  • Loading branch information
Andy C committed Dec 15, 2022
1 parent 3d641b3 commit ecdc064
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/osh_tdop.h
Expand Up @@ -32,9 +32,10 @@ struct NullInfo {
DISALLOW_COPY_AND_ASSIGN(NullInfo)
};

class ParserSpec {
class ParserSpec : public Obj {
public:
ParserSpec() {
// No fields
ParserSpec() : Obj(Tag::Opaque, kZeroMask, kNoObjLen) {
}
LeftInfo* LookupLed(Id_t id);
NullInfo* LookupNud(Id_t id);
Expand Down

0 comments on commit ecdc064

Please sign in to comment.