Skip to content

Commit ec69d58

Browse files
committed
Revert a failed change
1 parent b7098ff commit ec69d58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/include/clang/AST/ASTContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ class ASTContext : public RefCountedBase<ASTContext> {
19501950

19511951
/// Return the unique signed counterpart of
19521952
/// the integer type corresponding to size_t.
1953-
QualType getSignedSizeType() const;
1953+
CanQualType getSignedSizeType() const;
19541954

19551955
/// Return the unique type for "intmax_t" (C99 7.18.1.5), defined in
19561956
/// <stdint.h>.

clang/lib/AST/ASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6714,7 +6714,7 @@ QualType ASTContext::getSizeType() const {
67146714

67156715
/// Return the unique signed counterpart of the integer type
67166716
/// corresponding to size_t.
6717-
QualType ASTContext::getSignedSizeType() const {
6717+
CanQualType ASTContext::getSignedSizeType() const {
67186718
return getFromTargetType(Target->getSignedSizeType());
67196719
}
67206720

0 commit comments

Comments
 (0)