You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ uname -a
Linux sasquatch 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
$ git rev-parse HEAD
c250f8a698b070f5859c94739258a556a577bcd3
$ clang++ --version
clang version 6.0.0-1ubuntu2 (tags/RELEASE_600/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
$ git bisect start HEAD 1.0.0
Bisecting: 421 revisions left to test after this (roughly 9 steps)
[ab8f7cfce7034ca3d9753cd338fb58e57c2a9d42] gcc 7 cannot work yet on travis...
$ git bisect run bash -c 'clang++ -fsanitize=memory test.cc -Idoctest || exit 125; ./a.out; exit $?'
...
8def6b040fd176f929e9ebc881810745e11e0a2d is the first bad commit
commit 8def6b040fd176f929e9ebc881810745e11e0a2d
Author: onqtam <[email protected]>
Date: Fri Jun 10 21:28:08 2016 +0300
removed custom implementations of vector and hashtable and now using std::vector and std::set
:040000 040000 3881a9649b386a8da9f9be7a669acc684ff66047 80f1546c91cdb31406a1f13bb37eba44ac82799f M doctest
:040000 040000 ad0d1dd74ec472f7bcc62266ae2d1fb5223aaf31 ee2f54dc30e4a68c7fb8ffa48c2a47add90952b9 M examples
:040000 040000 60beec22921f96ef5d674ed955afbbac261f3b14 18d53e1d99078e285f70568769473d2226660a6d M scripts
bisect run success
The text was updated successfully, but these errors were encountered:
Description
Thanks for the awesome project!
I'm noticing memory sanitizer complaining about a usage of std::set.
Steps to reproduce
Extra information
The text was updated successfully, but these errors were encountered: