Update CircBuffer.h

pull/1044/head^2
Odin Holmes 2015-04-16 17:39:18 +02:00
parent cad87d11d4
commit c48e5ea445
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
private:
volatile uint16_t write;
volatile uint16_t read;
static const int size = Size+1;
static const int size = Size+1; //a modern optimizer should be able to remove this so it uses no ram.
T buf[Size];
};