KurtE / ILI9341_t3n

Extended ILI9341_T3 library (Teensy) including all SPI buses, Frame buffer, plus
MIT License
51 stars 23 forks source link

Fix compile issues with file name and conflict with STL containers #29

Closed Blackaddr closed 4 years ago

Blackaddr commented 4 years ago

The ILI9341 library is notorious for causing conflicts with STL containers like vector who have swap() as a member function. The internally defined swap function in this library must use a unique name to avoid naming collisions.

KurtE commented 4 years ago

Thanks