diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-10 14:39:18 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-10 14:39:18 +0300 |
commit | 33fcc371716d9cf61f5396eaaa1a31fbbd2cbbe8 (patch) | |
tree | 75f2d114d683c26af2784def985b1969e007ffb3 /include | |
parent | 315e30ceaec21a628df017db96c25d6a4d88ecc5 (diff) |
NewStory: no need to store hEvent twice, since there's one inside DB::EventInfo
Diffstat (limited to 'include')
-rw-r--r-- | include/m_database.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_database.h b/include/m_database.h index e29b04fa2e..75c34d2dbb 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -693,9 +693,10 @@ namespace DB public:
explicit EventInfo();
explicit EventInfo(MEVENT hEvent, bool bFetchBlob = true);
+ EventInfo& operator=(MEVENT hEvent);
~EventInfo();
- bool fetch(MEVENT hEvent, bool bFetchBlob = true);
+ bool fetch(bool bFetchBlob = true);
void unload();
void wipeNotify();
|