From 194b795204e316e327d85ad2e8164217b446dd63 Mon Sep 17 00:00:00 2001 From: Julian Fondren Date: Fri, 13 Aug 2021 22:22:09 -0500 Subject: [PATCH] import purify.bitrot --- example/source/app.d | 1 + source/maxmind/db.d | 1 + 2 files changed, 2 insertions(+) diff --git a/example/source/app.d b/example/source/app.d index fac8f6b..baf09a0 100644 --- a/example/source/app.d +++ b/example/source/app.d @@ -1,5 +1,6 @@ import maxmind.db; import std.stdio; +import std.conv; /** * Program entry point: takes an IP address as the input, and returns a diff --git a/source/maxmind/db.d b/source/maxmind/db.d index 0c81b6d..d3fc487 100644 --- a/source/maxmind/db.d +++ b/source/maxmind/db.d @@ -6,6 +6,7 @@ import std.conv : to; import std.mmfile; import std.regex; import std.string; +import std.bitmanip; /** Constant byte sequence that marks the beginning of the global metadata section */ protected const ubyte[] METADATA_MARKER = [0xAB, 0xCD, 0xEF, 'M', 'a', 'x', 'M', 'i', 'n', 'd', '.', 'c', 'o', 'm'];