forked from coal-library/coal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from nim65s/coal-more-compat
Coal more compat
- Loading branch information
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
#ifndef HPP_FCL_COAL_HH | ||
#define HPP_FCL_COAL_HH | ||
#ifndef HPP_FCL_COAL_HPP | ||
#define HPP_FCL_COAL_HPP | ||
|
||
#include <coal/config.hh> | ||
#include <coal/deprecated.hh> | ||
|
||
#define COAL_BACKWARD_COMPATIBILITY_WITH_HPP_FCL | ||
|
||
#ifdef _MSC_VER | ||
#pragma message COAL_DEPRECATED_HEADER( \ | ||
"Please update your includes from 'hpp/fcl' to 'coal'") | ||
#else | ||
#warning "Please update your includes from 'hpp/fcl' to 'coal'" | ||
#endif | ||
|
||
#define HPP_FCL_VERSION_AT_LEAST(major, minor, patch) \ | ||
COAL_VERSION_AT_LEAST(major, minor, patch) | ||
|
||
#endif // COAL_FWD_HH | ||
#endif // COAL_FWD_HPP |