[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Compilation under win32 broken
From: |
Elizabeth Barham |
Subject: |
Re: Compilation under win32 broken |
Date: |
29 Apr 2003 03:40:52 -0500 |
"W.J." writes:
> A kludge like
>
> class CCXX_CLASS_EXPORT ost::SHADigest<unsigned __int64,64>;
>
> Does not solve it.
What about things like:
template class ost::SHADigest<uint64,64>;
or adding:
CCXX_CLASS_EXPORT template class ost::SHADigest<uint64,64>;
or
template CCXX_CLASS_EXPORT class ost::SHADigest<uint64,64>;
to the end of sha.cpp? It compiles and links fine on g++.
Elizabeth