2
0
mirror of https://github.com/boostorg/yap.git synced 2026-01-28 07:42:17 +00:00
Files

17 lines
247 B
C++

/*
* Tape.cpp
*
* Created on: 6 Nov 2013
* Author: s0965328
*/
#include "Tape.h"
namespace AutoDiff
{
template<> Tape<unsigned int>* Tape<unsigned int>::indexTape = NULL;
template<> Tape<double>* Tape<double>::valueTape = NULL;
}