From 2aafaeb1190150e6a1eb575dc3f5be9b2d86d1eb Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 16 Mar 2020 14:14:16 +1100 Subject: [PATCH] array: add `md` stubs --- CMakeLists.txt | 6 ++++-- array/md.cpp | 10 ++++++++++ array/md.hpp | 13 +++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 array/md.cpp create mode 100644 array/md.hpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 049abd92..dd30683b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -266,10 +266,12 @@ list ( alloc/traits.hpp annotation.hpp array/darray.hpp - array/sarray.cpp - array/sarray.hpp + array/md.cpp + array/md.hpp array/parray.cpp array/parray.hpp + array/sarray.cpp + array/sarray.hpp array/varray.hpp ascii.hpp backtrace.hpp diff --git a/array/md.cpp b/array/md.cpp new file mode 100644 index 00000000..fc0154f2 --- /dev/null +++ b/array/md.cpp @@ -0,0 +1,10 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * Copyright 2010-2018 Danny Robson + */ + + +#include "md.hpp" diff --git a/array/md.hpp b/array/md.hpp new file mode 100644 index 00000000..2b7efbf9 --- /dev/null +++ b/array/md.hpp @@ -0,0 +1,13 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * Copyright 2010-2018 Danny Robson + */ + +#pragma once + + +/////////////////////////////////////////////////////////////////////////////// +