]> granicus.if.org Git - clang/commitdiff
Fix a couple other places that were returning SourceLocation by reference. NFC
authorCraig Topper <craig.topper@gmail.com>
Sat, 26 Sep 2015 05:10:14 +0000 (05:10 +0000)
committerCraig Topper <craig.topper@gmail.com>
Sat, 26 Sep 2015 05:10:14 +0000 (05:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@248658 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CoverageMappingGen.cpp

index 90e45a011ca87d44e3173928e3deb770a6b137fd..337479e06d184bcd345021c71b1be24c283a5dcc 100644 (file)
@@ -66,7 +66,7 @@ public:
 
   void setStartLoc(SourceLocation Loc) { LocStart = Loc; }
 
-  const SourceLocation &getStartLoc() const {
+  SourceLocation getStartLoc() const {
     assert(LocStart && "Region has no start location");
     return *LocStart;
   }
@@ -75,7 +75,7 @@ public:
 
   void setEndLoc(SourceLocation Loc) { LocEnd = Loc; }
 
-  const SourceLocation &getEndLoc() const {
+  SourceLocation getEndLoc() const {
     assert(LocEnd && "Region has no end location");
     return *LocEnd;
   }