From 94b5ec4919e762a53a019c59fccaa681d292a18a Mon Sep 17 00:00:00 2001 From: starlord Date: Fri, 20 Sep 2019 15:40:10 +0800 Subject: [PATCH] fix typo Former-commit-id: a35553692abacc8cbb1f94f5924871a1202f3e08 --- cpp/src/utils/Exception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/utils/Exception.h b/cpp/src/utils/Exception.h index 6542f913af..3a9ab89294 100644 --- a/cpp/src/utils/Exception.h +++ b/cpp/src/utils/Exception.h @@ -28,7 +28,7 @@ namespace milvus { class Exception : public std::exception { public: Exception(ErrorCode code, const std::string& message) - : code_(code_), + : code_(code), message_(message) { }