We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460cd30 commit a344315Copy full SHA for a344315
root/io/uniquePointer/privacyLoad.C
@@ -1,6 +1,15 @@
1
int privacyLoad() {
2
gSystem->Load("privacy");
3
4
+ // On Windows <fstream> leads to a forward declaration of
5
+ // std::filesystem::path and since we do not generate a dictonary for that
6
+ // class, there is also no autoparsing. This leads to a state that is
7
+ // different from the state in other platform and incurred an additional
8
+ // spurrious:
9
+ // ```Warning in <TClass::Init>: no dictionary for class filesystem::path is available```
10
+ // (due to the forward declaration only state).
11
+ gInterpreter->Declare("#include <filesystem>");
12
+
13
const char *names[] = {
14
"test",
15
"test1",
0 commit comments