Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "add BarrenDecl to reader dispatch list" #49

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/ifc/reader.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ namespace ifc {
case DeclSort::Property: return std::forward<F>(f)(index, get<symbolic::PropertyDecl>(index));
case DeclSort::OutputSegment: return std::forward<F>(f)(index, get<symbolic::SegmentDecl>(index));
case DeclSort::SyntaxTree: return std::forward<F>(f)(index, get<symbolic::SyntacticDecl>(index));
case DeclSort::Barren: return std::forward<F>(f)(index, get<symbolic::BarrenDecl>(index));

case DeclSort::Barren: // IFC has no corresponding structure as of 05/12/2022
case DeclSort::VendorExtension:
case DeclSort::Count:
default:
Expand Down
Loading