diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-09-28 00:23:30 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-09-28 00:23:30 +0200 |
commit | 38d7af6768871a5d285e776bbcfe18b6e7440cfb (patch) | |
tree | 7af3c627261085bb02fa3ff0f3c0d2f1993ab95c /example/demo1.cc | |
parent | e948a05981a9136b25f5723040d8060a6a3bc328 (diff) | |
download | matcha-threads-38d7af6768871a5d285e776bbcfe18b6e7440cfb.tar.gz matcha-threads-38d7af6768871a5d285e776bbcfe18b6e7440cfb.zip |
replace vector with fwd list
Diffstat (limited to 'example/demo1.cc')
-rw-r--r-- | example/demo1.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/example/demo1.cc b/example/demo1.cc index aa13c0c..1c910cd 100644 --- a/example/demo1.cc +++ b/example/demo1.cc @@ -27,7 +27,6 @@ int main() { e.spawn(std::make_unique<TestThread>("Thread2")); e.spawn(std::make_unique<TestThread>("Thread3")); e.run(); - e.run(); puts("[main] finish main thread"); return 0; |