Skip to content

Commit 525ab41

Browse files
committedDec 1, 2019
Add minor comments
1 parent 7e10621 commit 525ab41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/SparrowFrontend/Services/Convert/ConvertServiceImpl.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -350,15 +350,15 @@ void analyzeType(TypeWithStorage type, TypeWithStorage& base, SmallVector<TypeWr
350350
}
351351
} else if (type.kind() == typeKindConst) {
352352
tw = twConst;
353-
// twPtrDefault = twPtrConst;
353+
// twPtrDefault = twPtrConst; // transient category types?
354354
nextType = ConstType(type).base();
355355
} else if (type.kind() == typeKindMutable) {
356356
tw = twMutable;
357-
// twPtrDefault = twPtrMutable;
357+
// twPtrDefault = twPtrMutable; // transient category types?
358358
nextType = MutableType(type).base();
359359
} else if (type.kind() == typeKindTemp) {
360360
tw = twTemp;
361-
// twPtrDefault = twPtrTemp;
361+
// twPtrDefault = twPtrTemp; // transient category types?
362362
nextType = TempType(type).base();
363363
} else
364364
break;

0 commit comments

Comments
 (0)
Please sign in to comment.