Skip to content

v0.4.2

Latest
Compare
Choose a tag to compare
@BardoBard BardoBard released this 13 Jul 14:01

v0.4.2

Full Changelog: v0.4.1...v0.4.2

Overview

Fixed noexcept edge cases for binary_tree.
Updated installation guide to include C++17+ requirement.

Documentation Changes

Added C++17+ requirement to Installation.
Added table of contents to Examples for navigation.

Code Changes

Minor Changes

Removed noexcept from binary_tree to avoid crashes on edge cases (e.g. tree.build(v.begin() - 1, v.end())).
Added clear() to build(Iterator begin, Iterator end) in binary_tree to avoid not clearing if begin >= end.