Skip to content
Snippets Groups Projects
Commit 354444d3 authored by Axel Naumann's avatar Axel Naumann
Browse files

Replace __MAKECINT__ by __MAKECLING__.

parent efa300f4
No related branches found
No related tags found
No related merge requests found
...@@ -764,7 +764,7 @@ typedefs seen so far by Cling. Example: ...@@ -764,7 +764,7 @@ typedefs seen so far by Cling. Example:
``` {.cpp} ``` {.cpp}
// some C++ header definition // some C++ header definition
#ifdef __MAKECINT__ #ifdef __MAKECLING__
// turns off dictionary generation for all // turns off dictionary generation for all
#pragma link off all class; #pragma link off all class;
#pragma link off all function; #pragma link off all function;
...@@ -802,7 +802,7 @@ identical. Example: ...@@ -802,7 +802,7 @@ identical. Example:
``` {.cpp} ``` {.cpp}
// some C++ header definition // some C++ header definition
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all class; #pragma link off all class;
#pragma link C++ class A; #pragma link C++ class A;
#pragma link C++ class B; #pragma link C++ class B;
...@@ -825,7 +825,7 @@ Example: ...@@ -825,7 +825,7 @@ Example:
``` {.cpp} ``` {.cpp}
// some C/C++ header definition // some C/C++ header definition
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all global; #pragma link off all global;
#pragma link off all typedef; #pragma link off all typedef;
#pragma link C++ global a; #pragma link C++ global a;
...@@ -844,7 +844,7 @@ Example: ...@@ -844,7 +844,7 @@ Example:
``` {.cpp} ``` {.cpp}
// some C/C++ header definition // some C/C++ header definition
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all global; #pragma link off all global;
#pragma link off all typedef; #pragma link off all typedef;
#pragma link C++ global a; #pragma link C++ global a;
...@@ -892,7 +892,7 @@ class A { ...@@ -892,7 +892,7 @@ class A {
The pragma statements are: The pragma statements are:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all functions; #pragma link off all functions;
#pragma link C++ function f; #pragma link C++ function f;
#pragma link C++ function g(int,double); #pragma link C++ function g(int,double);
...@@ -923,7 +923,7 @@ template<class T> class A { ...@@ -923,7 +923,7 @@ template<class T> class A {
And generate dictionary for that: And generate dictionary for that:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link C++ class A<int>; #pragma link C++ class A<int>;
#endif #endif
``` ```
...@@ -944,7 +944,7 @@ You can generate dictionary for the newly instantiated template member ...@@ -944,7 +944,7 @@ You can generate dictionary for the newly instantiated template member
function only. function only.
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off defined_in A.h; #pragma link off defined_in A.h;
#pragma link C++ function A<int>::f(B&); #pragma link C++ function A<int>::f(B&);
#endif #endif
...@@ -960,7 +960,7 @@ functions in all classes. ...@@ -960,7 +960,7 @@ functions in all classes.
Example: Example:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all methods; #pragma link off all methods;
#endif #endif
``` ```
...@@ -977,7 +977,7 @@ At this moment, there should be no needs to use those statements. ...@@ -977,7 +977,7 @@ At this moment, there should be no needs to use those statements.
Example: Example:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all_function A; #pragma link off all_function A;
#pragma link off all_datamember A; #pragma link off all_datamember A;
#endif #endif
...@@ -1001,7 +1001,7 @@ Example: ...@@ -1001,7 +1001,7 @@ Example:
// file2.h // file2.h
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link off all classes; #pragma link off all classes;
#pragma link off all functions; #pragma link off all functions;
#pragma link off all globals; #pragma link off all globals;
...@@ -1041,7 +1041,7 @@ namespace ns { ...@@ -1041,7 +1041,7 @@ namespace ns {
The pragma statements are: The pragma statements are:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link C++ defined_in ns; #pragma link C++ defined_in ns;
#pragma link C++ nestedclass; #pragma link C++ nestedclass;
#endif #endif
...@@ -1077,7 +1077,7 @@ explicitly in the ROOT `LinkDef.h` file the next statement: ...@@ -1077,7 +1077,7 @@ explicitly in the ROOT `LinkDef.h` file the next statement:
From 5.15.57, you can omit them. Example: From 5.15.57, you can omit them. Example:
``` {.cpp} ``` {.cpp}
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link default off; #pragma link default off;
#endif #endif
...@@ -1091,7 +1091,7 @@ class B { ...@@ -1091,7 +1091,7 @@ class B {
double e; double e;
}; };
#ifdef __MAKECINT__ #ifdef __MAKECLING__
#pragma link C++ class A; // only class A is linked, not B #pragma link C++ class A; // only class A is linked, not B
#endif #endif
``` ```
......
...@@ -579,7 +579,7 @@ the Cling limitations, you can use the C preprocessor symbols defined ...@@ -579,7 +579,7 @@ the Cling limitations, you can use the C preprocessor symbols defined
for Cling and `rootcling`. for Cling and `rootcling`.
The preprocessor symbol `__CLING__` is defined for both ROOT and The preprocessor symbol `__CLING__` is defined for both ROOT and
`rootcling`. The symbol `__MAKECLING__` (and `__MAKECINT__` for backward `rootcling`. The symbol `__MAKECLING__` (and `__MAKECLING__` for backward
compatibility) is only defined in `rootcling`. compatibility) is only defined in `rootcling`.
Use `!defined(__CLING__) || defined(__MAKECLING__)` to bracket code that Use `!defined(__CLING__) || defined(__MAKECLING__)` to bracket code that
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment