Commit 0c723a60 authored by Anirudh Ramachandran's avatar Anirudh Ramachandran Committed by Facebook Github Bot 9

Make folly::PasswordCollector::getPassword const

Summary: As in title

Reviewed By: siyengar

Differential Revision: D3794648

fbshipit-source-id: f0b7052f34ecce65cf4e21d546d08c7a6b0a8ee3
parent 6b3b5def
...@@ -58,7 +58,7 @@ class PasswordCollector { ...@@ -58,7 +58,7 @@ class PasswordCollector {
* @param password Pass collected password back to OpenSSL * @param password Pass collected password back to OpenSSL
* @param size Maximum length of password including nullptr character * @param size Maximum length of password including nullptr character
*/ */
virtual void getPassword(std::string& password, int size) = 0; virtual void getPassword(std::string& password, int size) const = 0;
/** /**
* Return a description of this collector for logging purposes * Return a description of this collector for logging purposes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment