Ethan Slattery

Results 8 issues of Ethan Slattery

### Background I have a CSV file that is 10,090,688 bytes and the first column of the first row in a new section is reading incorrectly. In my case this...

bug

Clang has yet to implement [P0634 - Make typename more optional](https://wg21.link/P0634R3), while GCC has. I presume that is why the following code is in `seal/external/mp-units/core/include/units/bits/external/hacks.h` ```c++ #if UNITS_COMP_MSVC || UNITS_COMP_CLANG...

So I think this may be related to and/or covered by #208 , but I wanted to open an issue to report the specifics of what i am seeing. I...

I have a type that looks something like this: ``` ```c++ class CAttenEntry { float m_atten = -1.0f; public: CAttenEntry() : m_atten( -1 ) {} float atten() const { return...

enhancement

As discussed in #158 , this is a merge request exploring the best option to eliminate the dependence on snprintf, since the capability of printf family of functions may vary...

I have been looking for a test framework that will work for host side *and* on target testing without compromising modernity. I found snitch and it seems to be exactly...

enhancement

Changes to the WIN32 part of the code for MSVC (same as in I2CDriver repo): - added `#define NOMINMAX` macro to prevent windows from clashing with C++ use - make...

Very rought draft, but I wanted to open it so others can look and comment. This is work to make the Catch2 XML output match up with Catch2. Like the...