Hi all.. For some reason Visual Studio 2013 started giving me this error after creating a consol app using IntroJucer. Everything had been working great, then I create a new console app to try a new example in the book and started getting this error. The error points to the JuceHeader.h file, and in specific, it's pointing to the "using namespace juce;" line
#ifndef __APPHEADERFILE_FTUUBP__
#define __APPHEADERFILE_FTUUBP__
#include "AppConfig.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE
using namespace juce;
#endif
namespace ProjectInfo
{
const char*
const projectName = "FileManip";
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
}
#endif // __APPHEADERFILE_FTUUBP__
Any help will be greatly appreciated!!!
Rick