You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
385 B
12 lines
385 B
/**
|
|
* Copyright (c) 2016 by Ludwig Grill (www.rotzbua.de)
|
|
* Throws error if c++11 is not supported
|
|
*/
|
|
#ifndef REQUIRE_CPP11_H
|
|
#define REQUIRE_CPP11_H
|
|
|
|
#if __cplusplus < 201103L
|
|
#error "This library needs at least a C++11 compliant compiler, maybe compiler argument for C++11 support is missing or if you use Arduino IDE upgrade to version >=1.6.6"
|
|
#endif
|
|
|
|
#endif // REQUIRE_CPP11_H
|
|
|