Skip to content

Commit

Permalink
Remove TO_STRING
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Nov 20, 2023
1 parent 8d242d4 commit 46ad0f6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/include/common/constants.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#pragma once

#define TO_STRING(ARG) #ARG

#include <cstdint>

namespace kuzu {
namespace common {

constexpr char KUZU_VERSION[] = TO_STRING(KUZU_CMAKE_VERSION);
constexpr char KUZU_VERSION[] = KUZU_CMAKE_VERSION;

constexpr uint64_t DEFAULT_VECTOR_CAPACITY_LOG_2 = 11;
constexpr uint64_t DEFAULT_VECTOR_CAPACITY = (uint64_t)1 << DEFAULT_VECTOR_CAPACITY_LOG_2;
Expand Down

0 comments on commit 46ad0f6

Please sign in to comment.