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
Performance Optimizations using std::move and constexpr (#66)
* Replaced const with constexpr, to allow compiler to define various things at compile time rather than run time. This may have a small bump on performance, but either way it can't hurt.
* Added move semantics (via std::move within the utility lib). This has a small perfomance benefit since it will move the value rather than copy it. I only made these changes within the toString functions where I know the std::library is being used.
0 commit comments