array: add md stubs

This commit is contained in:
Danny Robson 2020-03-16 14:14:16 +11:00
parent b70c20d284
commit 2aafaeb119
3 changed files with 27 additions and 2 deletions

View File

@ -266,10 +266,12 @@ list (
alloc/traits.hpp alloc/traits.hpp
annotation.hpp annotation.hpp
array/darray.hpp array/darray.hpp
array/sarray.cpp array/md.cpp
array/sarray.hpp array/md.hpp
array/parray.cpp array/parray.cpp
array/parray.hpp array/parray.hpp
array/sarray.cpp
array/sarray.hpp
array/varray.hpp array/varray.hpp
ascii.hpp ascii.hpp
backtrace.hpp backtrace.hpp

10
array/md.cpp Normal file
View File

@ -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 <danny@nerdcruft.net>
*/
#include "md.hpp"

13
array/md.hpp Normal file
View File

@ -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 <danny@nerdcruft.net>
*/
#pragma once
///////////////////////////////////////////////////////////////////////////////