Skip to content

Commit 3c6ce53

Browse files
committed
Fix argument type typos
1 parent c0a4dfe commit 3c6ce53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/clang/Interpreter/CppInterOp.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,16 +262,16 @@ namespace Cpp {
262262

263263
/// This is similar to GetName() function, but besides
264264
/// the name, it also gets the template arguments.
265-
CPPINTEROP_API std::string GetCompleteName(TCppType_t klass);
265+
CPPINTEROP_API std::string GetCompleteName(TCppScope_t klass);
266266

267267
/// Gets the "qualified" name (including the namespace) of any
268268
/// named decl (a class, namespace, variable, or a function).
269-
CPPINTEROP_API std::string GetQualifiedName(TCppType_t klass);
269+
CPPINTEROP_API std::string GetQualifiedName(TCppScope_t klass);
270270

271271
/// This is similar to GetQualifiedName() function, but besides
272272
/// the "qualified" name (including the namespace), it also
273273
/// gets the template arguments.
274-
CPPINTEROP_API std::string GetQualifiedCompleteName(TCppType_t klass);
274+
CPPINTEROP_API std::string GetQualifiedCompleteName(TCppScope_t klass);
275275

276276
/// Gets the list of namespaces utilized in the supplied scope.
277277
CPPINTEROP_API std::vector<TCppScope_t> GetUsingNamespaces(TCppScope_t scope);
@@ -307,13 +307,13 @@ namespace Cpp {
307307

308308
/// Gets the number of Base Classes for the Derived Class that
309309
/// is passed as a parameter.
310-
CPPINTEROP_API TCppIndex_t GetNumBases(TCppType_t klass);
310+
CPPINTEROP_API TCppIndex_t GetNumBases(TCppScope_t klass);
311311

312312
/// Gets a specific Base Class using its index. Typically GetNumBases()
313313
/// is used to get the number of Base Classes, and then that number
314314
/// can be used to iterate through the index value to get each specific
315315
/// base class.
316-
CPPINTEROP_API TCppScope_t GetBaseClass(TCppType_t klass, TCppIndex_t ibase);
316+
CPPINTEROP_API TCppScope_t GetBaseClass(TCppScope_t klass, TCppIndex_t ibase);
317317

318318
/// Checks if the supplied Derived Class is a sub-class of the
319319
/// provided Base Class.

0 commit comments

Comments
 (0)