Skip to content

Commit f3df957

Browse files
committed
Fix function prototype.
1 parent 506c91d commit f3df957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/tools/libclang/CXString.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ CXString createCXString(CXStringBuf *buf);
7070
/// Create a CXStringSet object owns the strings. Such an object should be
7171
/// disposed with clang_disposeStringSet.
7272
CXStringSet *createSet(const std::vector<std::string> &Strings);
73-
CXStringSet *createSet(const std::vector<StringRef> &Strings);
73+
CXStringSet *createRefSet(ArrayRef<StringRef> Strings);
7474

7575
/// A string pool used for fast allocation/deallocation of strings.
7676
class CXStringPool {

0 commit comments

Comments
 (0)