Add OVERRIDE macro as wrapper for MSVC "override" keyword.

This commit is contained in:
David Capello 2011-03-25 14:22:53 -03:00
parent be955de1da
commit bc86d0afd7

View File

@ -0,0 +1,16 @@
// ASE base library
// Copyright (C) 2001-2011 David Capello
//
// This source file is ditributed under a BSD-like license, please
// read LICENSE.txt for more information.
#ifndef BASE_COMPILER_SPECIFIC_H_INCLUDED
#define BASE_COMPILER_SPECIFIC_H_INCLUDED
#ifdef _MSC_VER
#define OVERRIDE override
#else
#define OVERRIDE
#endif
#endif