Skip to content

Commit

Permalink
Make a fake version of nullptr to satisfy old compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
vjpai committed Mar 25, 2015
1 parent e98b1cc commit 11f64fb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions include/grpc++/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,26 @@
::google::protobuf::io::ZeroCopyInputStream
#endif

#ifdef __GNUC__
#if (__GNUC__ * 100 + __GNUC_MINOR__ < 406)
#define GRPC_NO_NULLPTR
#endif
#endif

#ifdef GRPC_NO_NULLPTR
#include <memory>
const class {
public:
template <class T> operator T*() const {return static_cast<T *>(0);}
template <class T> operator std::unique_ptr<T>() const {
return std::unique_ptr<T>(static_cast<T *>(0));
}
operator bool() const {return false;}
private:
void operator&() const = delete;
} nullptr = {};
#endif

namespace grpc {

typedef GRPC_CUSTOM_STRING string;
Expand Down

0 comments on commit 11f64fb

Please sign in to comment.