Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code Clean Up #37

Merged
merged 6 commits into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ add_subdirectory(binary)

if (${WITH_CORE} OR ${WITH_TESTS})
add_subdirectory(core)
add_subdirectory(ignite)
endif()

if (${WITH_TESTS})
Expand All @@ -99,10 +98,6 @@ if (${WITH_TESTS})
endif()
endif()

if (${WITH_ODBC})
add_subdirectory(network)
endif()

if (${WITH_ODBC})
add_subdirectory(odbc)

Expand Down
6 changes: 3 additions & 3 deletions src/common/include/ignite/ignite_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
* Declares ignite::IgniteError class.
*/

#ifndef _IGNITE_IGNITE_ERROR
#define _IGNITE_IGNITE_ERROR
#ifndef _IGNITE_ODBC_IGNITE_ERROR
birschick-bq marked this conversation as resolved.
Show resolved Hide resolved
#define _IGNITE_ODBC_IGNITE_ERROR

#include <stdint.h>

Expand Down Expand Up @@ -310,4 +310,4 @@ namespace ignite
# pragma warning(pop)
#endif //_MSC_VER

#endif //_IGNITE_IGNITE_ERROR
#endif //_IGNITE_ODBC_IGNITE_ERROR
6 changes: 3 additions & 3 deletions src/common/os/win/include/ignite/common/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _IGNITE_COMMON_COMMON
#define _IGNITE_COMMON_COMMON
#ifndef _IGNITE_ODBC_COMMON_COMMON
birschick-bq marked this conversation as resolved.
Show resolved Hide resolved
#define _IGNITE_ODBC_COMMON_COMMON

#define IGNITE_EXPORT __declspec(dllexport)
#define IGNITE_IMPORT __declspec(dllimport)
Expand Down Expand Up @@ -43,4 +43,4 @@

#define IGNITE_UNUSED(x) ((void) x)

#endif //_IGNITE_COMMON_COMMON
#endif //_IGNITE_ODBC_COMMON_COMMON
affonsov marked this conversation as resolved.
Show resolved Hide resolved
32 changes: 0 additions & 32 deletions src/ignite/CMakeLists.txt

This file was deleted.

224 changes: 0 additions & 224 deletions src/ignite/src/ignite.cpp

This file was deleted.

Loading