Files
scylladb/util/eclipse.hh
2014-10-19 17:42:47 +03:00

23 lines
358 B
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*
*/
#ifndef ECLIPSE_HH_
#define ECLIPSE_HH_
// Workarounds for deficiencies in Eclipse's C++ parser
//
// Tell Eclipse that IN_ECLIPSE is defined so it will ignore all the unknown syntax.
#ifndef IN_ECLIPSE
#else
// Eclipse doesn't grok alignof
#define alignof sizeof
#endif
#endif /* ECLIPSE_HH_ */