Merge pull request #3221 from disconnect3d/patch-1

Fix missing colon in ReturnConstTypeMember.cpp
This commit is contained in:
Jonas Jensen
2020-04-08 11:22:31 +02:00
committed by GitHub

View File

@@ -8,6 +8,6 @@ struct S {
// Whereas here it does make a semantic difference.
auto getValCorrect() const -> int {
return val
return val;
}
};