Fork/duplicate a local DEFINE_STRONG_INT_TYPE and DEFINE_STRING_TYPE.
PiperOrigin-RevId: 435355118
diff --git a/rs_bindings_from_cc/ir.h b/rs_bindings_from_cc/ir.h
index 2411f34..1dadd71 100644
--- a/rs_bindings_from_cc/ir.h
+++ b/rs_bindings_from_cc/ir.h
@@ -25,11 +25,11 @@
#include "base/logging.h"
#include "third_party/absl/strings/string_view.h"
#include "rs_bindings_from_cc/bazel_types.h"
+#include "rs_bindings_from_cc/util/strong_int.h"
#include "third_party/llvm/llvm-project/llvm/include/llvm/ADT/APSInt.h"
#include "third_party/llvm/llvm-project/llvm/include/llvm/ADT/Optional.h"
#include "third_party/llvm/llvm-project/llvm/include/llvm/Support/FormatVariadic.h"
#include "third_party/llvm/llvm-project/llvm/include/llvm/Support/JSON.h"
-#include "util/intops/strong_int.h"
namespace rs_bindings_from_cc {
@@ -77,10 +77,10 @@
// serialization/deserialization at the moment, we need a way to restore graph
// edges that don't follow the JSON tree structure (for example between types
// and records). We use DeclIds for this.
-DEFINE_STRONG_INT_TYPE(DeclId, uintptr_t);
+CRUBIT_DEFINE_STRONG_INT_TYPE(DeclId, uintptr_t);
// A numerical ID that uniquely identifies a lifetime.
-DEFINE_STRONG_INT_TYPE(LifetimeId, int);
+CRUBIT_DEFINE_STRONG_INT_TYPE(LifetimeId, int);
// A lifetime.
struct Lifetime {