summaryrefslogtreecommitdiff
path: root/src/make-unique.h
Commit message (Collapse)AuthorAgeFilesLines
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-281-42/+0
| | | This makes things easier for users and packagers of libwabt.
* Run clang-format over all the files (#814)Ben Smith2018-03-161-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 Smith2017-08-301-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`.