From: Kevin Sawicki Date: Fri, 5 Aug 2016 17:52:56 +0000 (-0700) Subject: Use ATOM_COMMON_ATOM_VERSION_H_ as ifdef guar X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdc666708fa4912c16bab3015d47b58fb5747e38;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Use ATOM_COMMON_ATOM_VERSION_H_ as ifdef guar --- diff --git a/atom/common/atom_version.h b/atom/common/atom_version.h index 9ed1496..b2c56b2 100644 --- a/atom/common/atom_version.h +++ b/atom/common/atom_version.h @@ -2,8 +2,8 @@ // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. -#ifndef ATOM_VERSION_H -#define ATOM_VERSION_H +#ifndef ATOM_COMMON_ATOM_VERSION_H_ +#define ATOM_COMMON_ATOM_VERSION_H_ #define ATOM_MAJOR_VERSION 1 #define ATOM_MINOR_VERSION 3 @@ -38,6 +38,7 @@ #define ATOM_VERSION_AT_LEAST(major, minor, patch) \ (( (major) < ATOM_MAJOR_VERSION) \ || ((major) == ATOM_MAJOR_VERSION && (minor) < ATOM_MINOR_VERSION) \ - || ((major) == ATOM_MAJOR_VERSION && (minor) == ATOM_MINOR_VERSION && (patch) <= ATOM_PATCH_VERSION)) + || ((major) == ATOM_MAJOR_VERSION && (minor) == ATOM_MINOR_VERSION \ + && (patch) <= ATOM_PATCH_VERSION)) -#endif /* ATOM_VERSION_H */ +#endif // ATOM_COMMON_ATOM_VERSION_H_