JuliaInterop / Clang.jl

C binding generator and Julia interface to libclang
https://juliainterop.github.io/Clang.jl/
MIT License
220 stars 68 forks source link

Multiline strings generate invalid Julia syntax #356

Closed KristofferC closed 2 years ago

KristofferC commented 2 years ago
#define S "abc"\
          "def"

generates

const S = ("abc")("def")

which is not valid.

Gnimuc commented 2 years ago

I hate macros.😵‍💫