Re: [reSIProcate] C2894 build error with VS 2005
- From: Alan Hawrylyshen <alan@xxxxxxxxxx>
 
- Date: Sun, 2 Oct 2005 13:27:07 -0600
 
On Oct 2, 2005, at 12:28, Matthias Moetje wrote:
Alan,
I have made the changes now as you requested and it seems to work  
correctly.
I also made two other changes for VS2005:
1. I added the following preprocessor definitions to the VS 8.0  
project configurations in order to avoid deprecation warnings and  
to use 32Bit time_t values:
_CRT_SECURE_NO_DEPRECATE
_CRT_NONSTDC_NO_DEPRECATE
_USE_32BIT_TIME_T
2. In file fifo.hxx I replaced
template <class Msg>
Fifo<Msg>::~Fifo<Msg>()
{
   clear();
}
with
template <class Msg>
Fifo<Msg>::~Fifo()
{
   clear();
}
to avoid this warning:
C4812: obsolete declaration style: please use  
'resip::Fifo<Msg>::~Fifo' instead
How should I check in the changes?
Best regards,
Matthias
Matthias;
If you think that you will have ongoing contributions to make to the  
project, we welcome new contributors.  If you would like write access  
to the repository, please create a Jira account at sipfoundry.org and  
let me know your username. I will setup SVN access at that point.
If you think this is a one-off or that you will have low volume  
contributions, then you can just send me a diff against a known  
revision of the repository. (Check out a fresh revision (or update  
your view)) and send me the output of svn diff -u so I can apply it  
as a patch and commit it).
Thanks.
Alan Hawrylyshen
reSIProcate Project Administrator
http://sipfoundry.org/reSIProcate/
a l a n a t j a s o m i d o t c o m