Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix reverse iterators for spans | Chris Robinson | 2019-12-25 | 1 | -8/+8 |
| | |||||
* | Avoid extraneous looping | Chris Robinson | 2019-11-29 | 1 | -17/+30 |
| | |||||
* | Move the polyphase resampler to the common lib | Chris Robinson | 2019-11-28 | 2 | -0/+259 |
| | |||||
* | Avoid an extraneous macro and use a simplified type alias | Chris Robinson | 2019-10-27 | 1 | -4/+4 |
| | |||||
* | Avoid static constexpr for arrays iterated over at run-time | Chris Robinson | 2019-10-25 | 1 | -1/+1 |
| | |||||
* | Put the pragma defines in a separate header | Chris Robinson | 2019-10-07 | 2 | -19/+25 |
| | |||||
* | Don't inline the utf8 converters | Chris Robinson | 2019-10-01 | 3 | -35/+41 |
| | |||||
* | Add some allocator fields GCC 6.3 seems to want | Chris Robinson | 2019-10-01 | 1 | -0/+6 |
| | |||||
* | Use using to avoid extraneous template instantiations | Chris Robinson | 2019-09-29 | 1 | -2/+2 |
| | |||||
* | Move the ifstream wrapper to common | Chris Robinson | 2019-09-22 | 2 | -0/+217 |
| | |||||
* | Revert "Silence some unreachable code warnings on MSVC" | Chris Robinson | 2019-09-20 | 1 | -12/+0 |
| | | | | | | This reverts commit 2ab4883439b1bc96578e86cc894504b9a1d1021b. It apparently didn't work at silencing anything. | ||||
* | Silence some unreachable code warnings on MSVC | Chris Robinson | 2019-09-20 | 1 | -0/+12 |
| | |||||
* | Remove and simplify some functions | Chris Robinson | 2019-09-20 | 1 | -6/+4 |
| | |||||
* | Simplify some REQUIRES uses | Chris Robinson | 2019-09-20 | 2 | -5/+5 |
| | |||||
* | Don't clean up more than necessary on destruction | Chris Robinson | 2019-09-20 | 2 | -4/+10 |
| | |||||
* | Work around MSVC's lack of standard _Pragma support | Chris Robinson | 2019-09-18 | 1 | -7/+7 |
| | |||||
* | Silence a couple specific warning instances | Chris Robinson | 2019-09-18 | 1 | -0/+27 |
| | |||||
* | Enable and fix some more warnings | Chris Robinson | 2019-09-18 | 1 | -1/+1 |
| | |||||
* | Add and use custom string types and functions | Chris Robinson | 2019-09-16 | 2 | -0/+74 |
| | |||||
* | Fix a few more GCC warnings | Chris Robinson | 2019-09-14 | 1 | -1/+1 |
| | |||||
* | Add a note about clearing complex_hilbert's imaginary input | Chris Robinson | 2019-09-14 | 1 | -1/+2 |
| | |||||
* | Fix some more implicit conversions noted by GCC | Chris Robinson | 2019-09-14 | 1 | -3/+3 |
| | |||||
* | removed unnecessary loop | Lopuska | 2019-09-15 | 1 | -2/+0 |
| | | | the caller in fshifter is already doing the same job by putting 0 for the imaginary part | ||||
* | Fix implicit conversions in the effects | Chris Robinson | 2019-09-14 | 1 | -0/+2 |
| | |||||
* | Clean up sample converter implicit conversions | Chris Robinson | 2019-09-12 | 1 | -18/+20 |
| | |||||
* | Don't use [[nodiscard]] in C++11 | Chris Robinson | 2019-09-12 | 1 | -5/+5 |
| | | | | To silence some warnings in older compilers, and fix an error with newer MSVC. | ||||
* | Fix a few more C-style casts | Chris Robinson | 2019-09-11 | 1 | -1/+1 |
| | |||||
* | Fix allocator comparison operators | Chris Robinson | 2019-09-11 | 1 | -4/+4 |
| | |||||
* | Fix some more implicit casts | Chris Robinson | 2019-09-11 | 2 | -3/+4 |
| | |||||
* | Simplify flexible array member usage | Chris Robinson | 2019-09-11 | 1 | -2/+18 |
| | |||||
* | Don't inherit for the allocator | Chris Robinson | 2019-09-11 | 1 | -22/+18 |
| | |||||
* | Avoid unnecessary explicit copy methods | Chris Robinson | 2019-09-08 | 1 | -20/+4 |
| | |||||
* | Try to improve non-dynamic-extent span construction | Chris Robinson | 2019-08-20 | 1 | -2/+2 |
| | |||||
* | Improve subspan default template argument | Chris Robinson | 2019-08-18 | 1 | -2/+2 |
| | |||||
* | Move double2int function | Raulshc | 2019-08-18 | 1 | -0/+35 |
| | | | | Move inline double2int function to alnumeric.h from pshifter.cpp | ||||
* | Add methods to get env vars as an optional | Chris Robinson | 2019-08-12 | 2 | -2/+40 |
| | |||||
* | Move vector.h to common | Chris Robinson | 2019-08-11 | 1 | -0/+15 |
| | |||||
* | Move the wstr converters to a separate header | Chris Robinson | 2019-08-11 | 2 | -20/+44 |
| | |||||
* | Move the dynload decls and defs to common | Chris Robinson | 2019-08-10 | 2 | -0/+76 |
| | |||||
* | Avoid __popcnt[64] on MSVC | Chris Robinson | 2019-08-10 | 1 | -41/+31 |
| | | | | | It requires SSE4, and provides no fallback mechanism for CPU targets lacking the opcode it maps to. | ||||
* | Move some declarations out of alcmain.h | Chris Robinson | 2019-08-05 | 1 | -0/+14 |
| | |||||
* | Modify LIKELY and UNLIKELY to not need extra parenthesis | Chris Robinson | 2019-08-04 | 4 | -7/+7 |
| | |||||
* | Add a Create method to FlexArray for "raw" arrays | Chris Robinson | 2019-08-03 | 1 | -0/+5 |
| | |||||
* | Add operator* to intrusive_ptr | Chris Robinson | 2019-08-01 | 1 | -0/+1 |
| | |||||
* | Add and use an intrusive_ptr type | Chris Robinson | 2019-08-01 | 1 | -0/+65 |
| | |||||
* | Add a common base for auto-deleting ref-counted objects | Chris Robinson | 2019-08-01 | 2 | -8/+56 |
| | | | | Which will also work as the basis for a future intrusive_ptr | ||||
* | Cleanup common sources' includes | Chris Robinson | 2019-07-29 | 8 | -33/+37 |
| | |||||
* | Remove a couple unnecessary includes | Chris Robinson | 2019-07-28 | 1 | -5/+0 |
| | |||||
* | Don't explicitly check for standard functions | Chris Robinson | 2019-07-26 | 1 | -2/+4 |
| | |||||
* | Add a helper to construct the optional value | Chris Robinson | 2019-07-01 | 1 | -29/+18 |
| |