forked from boostorg/align
-
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.
Add forward declaration header and update tests
- Loading branch information
Showing
8 changed files
with
103 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
Copyright (c) 2014 Glen Joseph Fernandes | ||
glenfe at live dot com | ||
Distributed under the Boost Software License, | ||
Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
or copy at http://boost.org/LICENSE_1_0.txt) | ||
*/ | ||
#ifndef BOOST_ALIGN_ALIGNMENT_OF_FORWARD_HPP | ||
#define BOOST_ALIGN_ALIGNMENT_OF_FORWARD_HPP | ||
|
||
/** | ||
Class template alignment_of | ||
forward declaration. | ||
@note This header provides a forward declaration | ||
for the `alignment_of` class template. | ||
@file | ||
@author Glen Fernandes | ||
*/ | ||
|
||
/** | ||
@cond | ||
*/ | ||
namespace boost { | ||
namespace alignment { | ||
template<class T> | ||
struct alignment_of; | ||
} | ||
} | ||
/** | ||
@endcond | ||
*/ | ||
|
||
#endif |
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
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
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