Skip to content

Commit

Permalink
Try to restore compilability with ltsmaster
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed May 8, 2019
1 parent a5f39cc commit dd2101a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dmd/ast_node.d
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
*/
module dmd.ast_node;

import dmd.root.rootobject : RootObject;
import dmd.visitor : Visitor;
// IN_LLVM: no selective imports for ltsmaster compatibility
import dmd.root.rootobject; // : RootObject;
import dmd.visitor; // : Visitor;

/// The base class of all AST nodes.
extern (C++) abstract class ASTNode : RootObject
Expand Down
2 changes: 2 additions & 0 deletions dmd/mars.d
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,9 @@ version (NoMain) {} else
version (DigitalMars)
{
version (Win64)
{
pragma(lib, "phobos64");
}
else version (Win32)
{
version (CRuntime_Microsoft)
Expand Down

0 comments on commit dd2101a

Please sign in to comment.