Hi to all,

If I am compiling through debug mode my project works fine but I am compiling through release mode it gives following warning and program crashes at runtime.

LINK : warning LNK4089: all references to "ADVAPI32.dll" discarded by /OPT:REF
LINK : warning LNK4089: all references to "MSVCP60.dll" discarded by /OPT:REF

The above warning is given by compiler if am included one .cpp and .h file in my project.In that file I have included
#include <string>
#include "stdafx.h"

these two files and used STL string class.

I hope that I got answer from u.

Rahul