Fix Key::WriteToFile method being not const qualified
This commit is contained in:
@@ -21,7 +21,7 @@ namespace Leonetienne::GCrypt {
|
||||
static Key LoadFromFile(const std::string& path);
|
||||
|
||||
//! Will save a keyfile
|
||||
void WriteToFile(const std::string& path);
|
||||
void WriteToFile(const std::string& path) const;
|
||||
|
||||
Key();
|
||||
Key(const Key& k);
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#ifndef GCRYPT_VERSION_H
|
||||
#define GCRYPT_VERSION_H
|
||||
|
||||
#define GCRYPT_VERSION 0.235
|
||||
#define GCRYPT_VERSION 0.236
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user