diff options
author | lloyd <[email protected]> | 2010-06-16 03:20:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-16 03:20:56 +0000 |
commit | 95d0a9033a979b0da9163bda4377c60049b432bd (patch) | |
tree | 9ae1d1ce321cdf3be2e6503b9c50da6178a164c0 /src/engine/engine.cpp | |
parent | a2b1e1b197cb6f722cc41c6c960d673aec726adf (diff) |
Compilation fixes
Diffstat (limited to 'src/engine/engine.cpp')
-rw-r--r-- | src/engine/engine.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index 03008fb26..958d4148f 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp @@ -52,7 +52,7 @@ Keyed_Filter* Engine::get_cipher(const std::string&, } PK_Ops::Key_Agreement* -Engine::get_key_agreement_op(const Private_Key) const +Engine::get_key_agreement_op(const Private_Key&) const { return 0; } @@ -80,3 +80,5 @@ Engine::get_decryption_op(const Private_Key&) const { return 0; } + +} |