mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 01:21:57 +00:00
Fix gcc compile error. #297
This commit is contained in:
parent
2ad7ac10ab
commit
1388e5190d
@ -170,7 +170,7 @@ struct ConstructorCache {
|
|||||||
if (ctors.empty())
|
if (ctors.empty())
|
||||||
return nullopt;
|
return nullopt;
|
||||||
|
|
||||||
Usr best_usr;
|
Usr best_usr = ctors[0].usr;
|
||||||
int best_score = INT_MIN;
|
int best_score = INT_MIN;
|
||||||
|
|
||||||
// Scan constructors for the best possible match.
|
// Scan constructors for the best possible match.
|
||||||
|
7
src/port.h
Normal file
7
src/port.h
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if defined(__GNUC__) && !defined(__clang__)
|
||||||
|
#define ATTRIBUTE_UNUSED __attribute__((unused))
|
||||||
|
#else
|
||||||
|
#define ATTRIBUTE_UNUSED
|
||||||
|
#endif
|
@ -1,5 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "port.h"
|
||||||
|
|
||||||
#include <macro_map.h>
|
#include <macro_map.h>
|
||||||
#include <optional.h>
|
#include <optional.h>
|
||||||
#include <variant.h>
|
#include <variant.h>
|
||||||
@ -73,12 +75,16 @@ struct IndexFile;
|
|||||||
#define REFLECT_MEMBER(name) ReflectMember(visitor, #name, value.name)
|
#define REFLECT_MEMBER(name) ReflectMember(visitor, #name, value.name)
|
||||||
#define REFLECT_MEMBER2(name, value) ReflectMember(visitor, name, value)
|
#define REFLECT_MEMBER2(name, value) ReflectMember(visitor, name, value)
|
||||||
|
|
||||||
|
// TODO Make it inline because this macro can be used in header files.
|
||||||
#define MAKE_REFLECT_TYPE_PROXY(type, as_type) \
|
#define MAKE_REFLECT_TYPE_PROXY(type, as_type) \
|
||||||
template <typename TVisitor> \
|
ATTRIBUTE_UNUSED inline void Reflect(Reader& visitor, type& value) { \
|
||||||
void Reflect(TVisitor& visitor, type& value) { \
|
as_type value0; \
|
||||||
auto value0 = static_cast<as_type>(value); \
|
|
||||||
::Reflect(visitor, value0); \
|
::Reflect(visitor, value0); \
|
||||||
value = static_cast<type>(value0); \
|
value = static_cast<type>(value0); \
|
||||||
|
} \
|
||||||
|
inline void Reflect(Writer& visitor, type& value) { \
|
||||||
|
auto value0 = static_cast<as_type>(value); \
|
||||||
|
::Reflect(visitor, value0); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define _MAPPABLE_REFLECT_MEMBER(name) REFLECT_MEMBER(name);
|
#define _MAPPABLE_REFLECT_MEMBER(name) REFLECT_MEMBER(name);
|
||||||
|
Loading…
Reference in New Issue
Block a user