Skip to content

Commit

Permalink
doxygen does not like #if __has...
Browse files Browse the repository at this point in the history
Used the indention of this that GCC example showed to use...
  • Loading branch information
KurtE committed Sep 3, 2023
1 parent 67103b5 commit 416f228
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Adafruit_ILI9341.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
#include "pins_arduino.h"
#ifndef RASPI
#if defined __has_include
# if __has_include ("wiring_private.h")
# include "wiring_private.h"
# endif
#if __has_include ("wiring_private.h")
#include "wiring_private.h"
#endif
#endif
#endif
#endif
Expand Down

0 comments on commit 416f228

Please sign in to comment.