diff --git a/lib/abi/CHANGELOG.TXT b/lib/abi/CHANGELOG.TXT index 233d4a7dc..1cd79fbd2 100644 --- a/lib/abi/CHANGELOG.TXT +++ b/lib/abi/CHANGELOG.TXT @@ -134,8 +134,8 @@ Version 4.0 Symbol added: _ZTSSt12bad_any_cast Symbol added: _ZTVSt12bad_any_cast -* rTBD - Remove basic_string::insert and basic_string::replace template methods - which should be inline. +* r295398 - Remove basic_string::insert and basic_string::replace template methods + which should be inline. These functions should never have had visible definitions in the dylib but since they were previously not specified with 'inline' they accidentally diff --git a/utils/libcxx/sym_check/extract.py b/utils/libcxx/sym_check/extract.py index cc060f94c..152ff97db 100644 --- a/utils/libcxx/sym_check/extract.py +++ b/utils/libcxx/sym_check/extract.py @@ -49,7 +49,7 @@ class NMExtractor(object): parsed symbols. """ cmd = [self.nm_exe] + self.flags + [lib] - out, _, exit_code = util.executeCommandVerbose(cmd) + out, _, exit_code = libcxx.util.executeCommandVerbose(cmd) if exit_code != 0: raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib)) fmt_syms = (self._extract_sym(l)