Skip to content

Commit

Permalink
Make flatbuffers work with ArduinoSTL (#4357) (#4361)
Browse files Browse the repository at this point in the history
*Keep legacy compatibility with StandardCplusplus lib (utility.h)
  • Loading branch information
rstoica authored and aardappel committed Jun 21, 2017
1 parent 25a1595 commit b0fa5e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/flatbuffers/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
#include <cstdlib>
#include <cstring>
#include <string>
#ifndef ARDUINO
#include <utility>
#else
#if defined(ARDUINO) && !defined(ARDUINOSTL_M_H)
#include <utility.h>
#else
#include <utility>
#endif
#include <type_traits>
#include <vector>
Expand Down

0 comments on commit b0fa5e0

Please sign in to comment.