Skip to content

Commit

Permalink
Merge pull request #1 from guysoft/master
Browse files Browse the repository at this point in the history
Fix include for linux which is case-sensative
  • Loading branch information
EinarArnason authored Nov 7, 2018
2 parents c14c220 + c12f519 commit 2bad49b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#pragma once

#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
Expand Down Expand Up @@ -112,4 +112,4 @@ class Queue {

return item;
}
};
};

0 comments on commit 2bad49b

Please sign in to comment.