|
|
|
|
|
by Chabs
2696 days ago
|
|
C++, as a language, has never cared about the notion of "files". The entire standard is defined as a function of a "Translation Unit", which is an abstract notion that we tend to associate with "a single .cpp file" by nothing but convention. Since modules operate at the language level, they need to operate on this notion, which precludes importing by file. |
|