Skip to content

Commit b67d877

Browse files
authored
Merge pull request #155 from dmaixner/dmaixner-nullptr
fix nullptr definition for C++ < 11
2 parents b2d90c2 + 2de5333 commit b67d877

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

DallasTemperature.h

+20-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,26 @@
3838
#define DEVICE_DISCONNECTED_RAW -7040
3939

4040
// For readPowerSupply on oneWire bus
41-
#ifndef nullptr
42-
#define nullptr NULL
41+
// definition of nullptr for C++ < 11, using official workaround:
42+
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf
43+
#if __cplusplus < 201103L
44+
const class
45+
{
46+
public:
47+
template <class T>
48+
operator T *() const
49+
{
50+
return 0;
51+
}
52+
template <class C, class T>
53+
operator T C::*() const
54+
{
55+
return 0;
56+
}
57+
58+
private:
59+
void operator&() const;
60+
} nullptr = {};
4361
#endif
4462

4563
typedef uint8_t DeviceAddress[8];

0 commit comments

Comments
 (0)