From 1b4e575ce28c0cad354e2d12953a94a7ebc8d1f8 Mon Sep 17 00:00:00 2001 From: groot Date: Fri, 20 Sep 2019 15:40:10 +0800 Subject: [PATCH] fix typo Former-commit-id: 716c5ef0c2ec2fff862fc21aade33011750dacd8 --- 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 6542f913..3a9ab892 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) { } -- GitLab