Skip to content

Commit b2340e4

Browse files
committed
[cling] rename CINT to Cling
1 parent c7b3720 commit b2340e4

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

interpreter/cling/docs/tools/cling.pod.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ CSharpRepl) of such kind of software applications name them interactive
2727
compilers.
2828

2929
One of Cling's main goals is to provide contemporary, high-performance
30-
alternative of the current C++ interpreter in the ROOT project - CINT. The
31-
backward-compatibility with CINT is major priority during the development.
30+
alternative of the forerunner C++ interpreter in the ROOT project - CINT. The
31+
backward-compatibility with CINT was major priority during the development.
3232
Cling serves as a core component of the ROOT system for storing and analyzing
3333
the data of the Large Hadron Collider (LHC) experiments.
3434

interpreter/cling/lib/Interpreter/Interpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ namespace cling {
821821
return Value;
822822
}
823823

824-
///\brief Maybe transform the input line to implement cint command line
824+
///\brief Maybe transform the input line to implement Cling command line
825825
/// semantics (declarations are global) and compile to produce a module.
826826
///
827827
Interpreter::CompilationResult

interpreter/cling/lib/MetaProcessor/Display.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ void ClassPrinter::DisplayClassDecl(const CXXRecordDecl* classDecl)const
778778
DisplayDataMembers(classDecl, 0);
779779

780780
fOut.Print("List of member functions: -------------------------------------------------\n");
781-
//CINT has a format like %-15s blah-blah.
781+
//CINT had a format like %-15s blah-blah.
782782
fOut.Print("filename line:size busy function type and name\n");
783783
DisplayMemberFunctions(classDecl);
784784
}
@@ -1201,7 +1201,7 @@ void GlobalsPrinter::DisplayGlobal(const std::string& name)const
12011201
count += DisplayDCDecls(tuDecl, [&name] (NamedDecl *D)
12021202
{ return D->getNameAsString() == name; });
12031203

1204-
//Do as CINT does:
1204+
//Do as CINT did:
12051205
if (!count)
12061206
fOut.Print(("Variable " + name + " not found\n").c_str());
12071207
}

interpreter/cling/test/Lookup/func.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void G_b(int vi, double vd) { int x = vi; double y = vd; }
5555
void G_c(int vi, int vj) { int x = vi; int y = vj; }
5656
void G_c(int vi, double vd) { int x = vi; double y = vd; }
5757
template <class T> void G_d(T v) { T x = v; }
58-
// Note: In CINT, looking up a class template specialization causes
58+
// Note: In CINT, looking up a class template specialization causes (TODO: recheck with Cling)
5959
// instantiation, but looking up a function template specialization
6060
// does not, so we explicitly request the instantiations we are
6161
// going to lookup so they will be there to find.
@@ -68,7 +68,7 @@ void H_b(int vi, double vd) { int x = vi; double y = vd; }
6868
void H_c(int vi, int vj) { int x = vi; int y = vj; }
6969
void H_c(int vi, double vd) { int x = vi; double y = vd; }
7070
template <class T> void H_d(T v) { T x = v; }
71-
// Note: In CINT, looking up a class template specialization causes
71+
// Note: In CINT, looking up a class template specialization causes (TODO: recheck with Cling)
7272
// instantiation, but looking up a function template specialization
7373
// does not, so we explicitly request the instantiations we are
7474
// going to lookup so they will be there to find.

interpreter/cling/www/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h1>Cling interprets C++</h1>
2929
<p>
3030
Cling is built on the top of LLVM and Clang libraries. In addition to standard interpreters it has a command line prompt and uses just-in-time (JIT) compiler. This kind of software application is commonly known as an interactive compiler.
3131
<br/>
32-
Cling started off as a contemporary, high-performance alternative of the current C++ interpreter in the ROOT project - CINT.
32+
Cling started off as a contemporary, high-performance alternative of the forerunner C++ interpreter in the ROOT project - CINT.
3333
</p>
3434

3535
<h3>Why interpreting C++ with Cling?</h3>

0 commit comments

Comments
 (0)