Skip to content

Commit

Permalink
Add missing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed Dec 6, 2019
1 parent c6f22f6 commit 624beaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CxxREPL/replpane.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ module CxxREPL
cxxllvmdir = joinpath(llvmsrcdir, "include")
if isdir(cxxclangdir)
addHeaderDir(cxxclangdir)
addHeaderDir(joinpath(BASE_JULIA_SRC, "usr", "include", "clang"))
addHeaderDir(joinpath(CxxCore.BASE_JULIA_SRC, "usr", "include", "clang"))
end
if isdir(cxxllvmdir)
addHeaderDir(cxxllvmdir)
addHeaderDir(joinpath(BASE_JULIA_SRC, "usr", "include", "llvm"))
addHeaderDir(joinpath(CxxCore.BASE_JULIA_SRC, "usr", "include", "llvm"))
end
end

Expand Down

0 comments on commit 624beaf

Please sign in to comment.