Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move headers to include/wabt/ (#1998) | Alex Reinking | 2022-09-28 | 1 | -42/+0 |
| | | | This makes things easier for users and packagers of libwabt. | ||||
* | Run clang-format over all the files (#814) | Ben Smith | 2018-03-16 | 1 | -1/+1 |
| | | | | I also fixed some for/if to use braces if I noticed it. This is a non-functional change. | ||||
* | Use std::unique_ptr in intrusive-list API (#602) | Ben Smith | 2017-08-30 | 1 | -0/+42 |
By using std::unique_ptr in more function signatures, we can avoid calls to `std::unique_ptr<T>::release`. This change also moves `wabt::MakeUnique` into `src/make-unique.h` so it can be used in `intrusive-list.h` and `test-intrusive-list.cc` without pulling in all of `common.h`. |