Skip to content

Commit d4af03e

Browse files
committed
fixup! fix string test compilation
1 parent 8b71129 commit d4af03e

File tree

1 file changed

+2
-2
lines changed
  • lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/string

1 file changed

+2
-2
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/string/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,15 @@ template <class _CharT, class _Traits, class _Allocator> class basic_string {
186186

187187
__long &getLongRep() {
188188
#if COMPRESSED_PAIR_REV == 0
189-
return __r_.first().__l
189+
return __r_.first().__l;
190190
#elif COMPRESSED_PAIR_REV <= 2
191191
return __rep_.__l;
192192
#endif
193193
}
194194

195195
__short &getShortRep() {
196196
#if COMPRESSED_PAIR_REV == 0
197-
return __r_.first().__s
197+
return __r_.first().__s;
198198
#elif COMPRESSED_PAIR_REV <= 2
199199
return __rep_.__s;
200200
#endif

0 commit comments

Comments
 (0)