StandardCplusplus icon indicating copy to clipboard operation
StandardCplusplus copied to clipboard

Standard C++ for Arduino (port of uClibc++)

Results 28 StandardCplusplus issues
Sort by recently updated
recently updated
newest added

hi! thank you for this library! i found a little issue with the ordering of functions in algorithm. here is the fixed version, merge it if you like it.

I'm trying to use this library and hitting a problem. Below is the (verbose) output. I did notice that the StandardCplusplus.h include does an #undef abs, which I'm assuming is...

Got caught out by an old arduino install. Since this was fixed in [1.04](https://github.com/arduino/Arduino/commit/141684d41062d64552b77943c89ca7b78efac0c6), and other files check for version 1, this seems sensible

My Class Name: MyClass Here is the code: ``` c class MyCollection { private: std::list m_list; public: MyCollection() : m_list() { } void addMyClass(const MyClass & myClass) { m_list.push_back(myClass); }...

After copying files into the `/Arduino/libraries/StandardCplusplus` folder, IDE returns a compilation error because some operators are defined twice (with Arduino 1.0.4). The solution I've found to bypass the problem is...

Hello, how do I convert an int to a string using standardcplusplus? I tried the conventional way of using stringstreams, but it gives an error: std::string itoa(int arg) { stringstream...

remove 'deprecated' message when using vectors

I'm trying to use the library, but I'm facing this bug. ![image](https://github.com/maniacbug/StandardCplusplus/assets/32855001/14ee632c-7df9-4b2f-842a-550704a2be4c) My OS is Debian 12 ```sh nilson@acerAspire:~$ cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 12 (bookworm)" NAME="Debian GNU/Linux" VERSION_ID="12" VERSION="12 (bookworm)"...