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

Last commit on 22 Sep 2013 and it is doesn't work on Platformio and Arduino UNO. I'm getting plenty errors when doing build. But works with the ArduinoSTL lib. The...

It seems like there are some compilation problems related to the istream and ostream classes. I don't think it is related to my code. I get the following errors just...

When I try to throw a `logic_error`, I am given an error saying: `namespace "std" has no member "logic_error"`. I have included the `stdexcept` header.

According to https://en.cppreference.com/w/cpp/types/enable_if it should be in the `type_traits` header file. But currently the lib doesn't mention `enable_if` at all. The same goes for `is_arithmetic` (https://en.cppreference.com/w/cpp/types/is_arithmetic).

``` c++ #include #include #include #include #include #include std::vector myvec; std::map mymap; void setup() { myvec.push_back(1); mymap["test"] = 2; } void loop() {} ``` When compiling for Arduno Due this...

Both functions go like this ```(size_t i = 0; i

Hello, I'm currently trying to use your library to make a school project, and I prefer to use vectors instead of double-sized array. It worked well on my last project...

Namely, that you need to #include . For searchability, I mention the error message that will appear if you fail to do this. New instruction(s) are in a new section...

Hi there, thanks for porting uClibc++ to Arduino, we are using it at the [Hiveeyes](https://hiveeyes.org/) project. Cheers! Yesterday, we experienced errors when trying to compile with avr-gcc 5.3. We found...