Workaround clang 3.4 bug.
This commit is contained in:
parent
8aa95a98ca
commit
ac5e1960f9
@ -494,7 +494,8 @@ class SecretChatActor final : public NetQueryCallback {
|
||||
template <class StateT>
|
||||
class Change {
|
||||
public:
|
||||
Change() = default;
|
||||
Change() : message_id() {
|
||||
}
|
||||
explicit operator bool() const {
|
||||
return !data.empty();
|
||||
}
|
||||
@ -520,7 +521,7 @@ class SecretChatActor final : public NetQueryCallback {
|
||||
return sb;
|
||||
}
|
||||
|
||||
int32 message_id = 0;
|
||||
int32 message_id;
|
||||
|
||||
private:
|
||||
std::string data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user