Skip to content

Commit

Permalink
Merge branch 'patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed Jan 27, 2019
2 parents 4973e82 + f27ea50 commit 289bdd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/clang2julia.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ const CLANG_JULIA_TYPEMAP = Dict(
:uintptr_t => :Csize_t,
:tm => :Ctm,
:time_t => :Ctime_t,
:clock_t => :Cclock_t,
:clock_t => :Cclock_t,
:wchar_t => :Cwchar_t,
)

const INT_CONVERSION = Dict(
Expand Down
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function print_template(path, libname="LibXXX")
# Load in `deps.jl`, complaining if it does not exist
const depsjl_path = joinpath(@__DIR__, "..", "deps", "deps.jl")
if !isfile(depsjl_path)
error("$libname was not build properly. Please run Pkg.build(\"$libname\").")
error("$libname was not build properly. Please run Pkg.build(\\"$libname\\").")
end
include(depsjl_path)
# Module initialization function
Expand Down

0 comments on commit 289bdd5

Please sign in to comment.