Fix ConnectionContextStore namespaces (#1581)

Summary:
It should fix this [issue](https://github.com/facebook/flipper/issues/1565)

I'm not a C++ expert. Any kind of comment or advice is very appreciated.

Pull Request resolved: https://github.com/facebook/flipper/pull/1581

Reviewed By: passy

Differential Revision: D24189366

Pulled By: mweststrate

fbshipit-source-id: cc93fe36036d557b63c9c1baa62ed9bcc14c08ab
This commit is contained in:
Marco Marinangeli
2020-10-13 02:59:07 -07:00
committed by Facebook GitHub Bot
parent d0828f6837
commit 05f4c0f54f

View File

@@ -12,7 +12,9 @@
#include <iostream> #include <iostream>
#include "CertificateUtils.h" #include "CertificateUtils.h"
#include "Log.h" #include "Log.h"
using namespace facebook::flipper;
namespace facebook {
namespace flipper {
static constexpr auto CSR_FILE_NAME = "app.csr"; static constexpr auto CSR_FILE_NAME = "app.csr";
static constexpr auto FLIPPER_CA_FILE_NAME = "sonarCA.crt"; static constexpr auto FLIPPER_CA_FILE_NAME = "sonarCA.crt";
@@ -162,3 +164,6 @@ bool fileExists(std::string fileName) {
struct stat buffer; struct stat buffer;
return stat(fileName.c_str(), &buffer) == 0; return stat(fileName.c_str(), &buffer) == 0;
} }
} // namespace flipper
} // namespace facebook