Files
epics-base/modules/libcom/src/cxxTemplates/resourceLib.cpp
2018-06-19 11:25:46 +02:00

26 lines
767 B
C++

/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
/*
* Author: Jeff Hill
*/
#include "resourceLib.h"
#ifdef _MSC_VER
# pragma warning ( push )
# pragma warning ( disable:4660 )
#endif
template class intId < unsigned, 8u, sizeof(unsigned)*CHAR_BIT >;
#ifdef _MSC_VER
# pragma warning ( pop )
#endif