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

RFC: Replace external dependency CEnum with private submodule #175

Merged
merged 3 commits into from
Jul 27, 2020
Merged
Changes from 1 commit
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
Next Next commit
use submodule CEnum instead of external package
  • Loading branch information
GregPlowman authored Jul 27, 2020
commit 2229947394b076e462b2098c51e5b9d4e1d1f50a
3 changes: 2 additions & 1 deletion src/wrapper.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
wrap(base) = joinpath("wrapper", base * ".jl")

# used by Clang.jl
using CEnum
include("CEnum.jl")
using .CEnum

# all type definitions
include(wrap("manual_commons"))
Expand Down