Skip to content

Commit

Permalink
Remove inheritance which leads to errors with msvc2017
Browse files Browse the repository at this point in the history
  • Loading branch information
admo committed Feb 8, 2019
1 parent 303fd39 commit 1332cdd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ast/pregenerated/ast.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

# include <libport/ref-counted.hh>
# include <ast/loc.hh>
# include <libport/hierarchy.hh>
// At least OS X's GCC does not actually export functions that
// are flagged as exported, but use types that are not exported.
// So we need to export these, for sake of binder::bind.
Expand All @@ -41,7 +40,7 @@ namespace ast
{

/// Ast.
class URBI_SDK_API Ast : public libport::RefCounted, public libport::meta::Hierarchy<Ast, Nodes>
class URBI_SDK_API Ast : public libport::RefCounted
{
public:
/// Store a reference onto the original node.
Expand Down

0 comments on commit 1332cdd

Please sign in to comment.