-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Clang: modules and std::initializer_list do not like each other #118218
Comments
@llvm/issue-subscribers-clang-modules Author: None (jijjijj)
Clang version: 19.1.3
C++ version: 23
STL: from msvc
I was trying to compile nlohmann json using modules and I encountered an error (posting the original error for others who might google it):
I tried to reduce code to the minimum reproducible example and here's what I got (pay attention to the highlighted lines changing which kind of fixes the issue):
<pre> #pragma once #include <initializer_list> struct adapter { template<typename InputAdapterType = adapter> public: <pre> module; #define _BUILD_STD_MODULE // <b><i>if I delete this line everything works fine</i></b> #include <intrin.h> export module std; #include <initializer_list> <details>
</details> |
Seems to happen because UPD: probably I don't know what I'm talking about |
@ChuanqiXu9 Anyway what's the benefit of splitting UPD: I found #60405 and https://reviews.llvm.org/D144367 it clarifies things a little |
@jijjijj the reason why we split and is, the contents in |
…ed out of a module (#118537) If the std::initializer_list is exported out of module, its `DeclContext` is not a namespace as `Sema::isStdInitializerList` expects, but an `Decl::Kind::Export` and only its parent is a namespace. So this commit makes `Sema::isStdInitializerList` account for that. I'm really new to clang so I'm not 100% sure that was the issue, it seems so and it fixes compilation. Also I probably need to add tests but I'd like someone to approve the idea first. Fixes #118218
@jijjijj And out of curiosity, since I don't have environment for MSVC, does it mean we can use clang to compile the std module from MSSTL? |
@ChuanqiXu9 it was compilable already, but as we saw with this issue, the problems may arise when you use this module |
Got it. Fine enough. |
Clang version: 19.1.3
C++ version: 23
STL: from msvc
I was trying to compile nlohmann json using modules and I encountered an error (posting the original error for others who might google it):
I tried to reduce code to the minimum reproducible example and here's what I got (pay attention to the highlighted lines changing which kind of fixes the issue):
The full error I get
The text was updated successfully, but these errors were encountered: