From 212d3937125d7eeab2eb2b1f4548969926a75c0b Mon Sep 17 00:00:00 2001 From: Xu Peng Date: Tue, 16 Apr 2019 16:58:42 +0800 Subject: [PATCH] refactor(db): mv types.h to Types.h Former-commit-id: 5a36823d84570784113420afa4fff7d0cd1ef1d2 --- cpp/src/db/{types.h => Types.h} | 0 cpp/src/db/db.h | 2 +- cpp/src/db/db_impl.h | 2 +- cpp/src/db/id_generators.h | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename cpp/src/db/{types.h => Types.h} (100%) diff --git a/cpp/src/db/types.h b/cpp/src/db/Types.h similarity index 100% rename from cpp/src/db/types.h rename to cpp/src/db/Types.h diff --git a/cpp/src/db/db.h b/cpp/src/db/db.h index 74dfe93e..5ff2af98 100644 --- a/cpp/src/db/db.h +++ b/cpp/src/db/db.h @@ -5,7 +5,7 @@ #include "options.h" #include "db_meta.h" #include "status.h" -#include "types.h" +#include "Types.h" namespace zilliz { namespace vecwise { diff --git a/cpp/src/db/db_impl.h b/cpp/src/db/db_impl.h index 18c6b154..5653777a 100644 --- a/cpp/src/db/db_impl.h +++ b/cpp/src/db/db_impl.h @@ -6,7 +6,7 @@ #include #include "db.h" #include "memvectors.h" -#include "types.h" +#include "Types.h" namespace zilliz { namespace vecwise { diff --git a/cpp/src/db/id_generators.h b/cpp/src/db/id_generators.h index 0a9db16c..0775cd65 100644 --- a/cpp/src/db/id_generators.h +++ b/cpp/src/db/id_generators.h @@ -1,7 +1,7 @@ #pragma once #include -#include "types.h" +#include "Types.h" namespace zilliz { namespace vecwise { -- GitLab