Removed redundant spaces
[libcds.git] / cds / details / aligned_type.h
index cbe7bb60754040ab6d238c32b4b539b700b99aba..2ebd656e6f70bc097be13f0cfa919869b5b0295d 100644 (file)
@@ -5,7 +5,7 @@
 
     Source code repo: http://github.com/khizmax/libcds/
     Download: http://sourceforge.net/projects/libcds/files/
-    
+
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions are met:
 
@@ -25,7 +25,7 @@
     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
+    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
 #ifndef CDSLIB_DETAILS_ALIGNED_TYPE_H
@@ -41,7 +41,7 @@ namespace cds { namespace details {
         equal to another type alignment. For example, the following declaration produces an error in Microsoft Visual Studio 2008 compiler:
         \code
             typedef double  my_double;
-            typedef __declspec(align( __alignof(my_double) )) int   aligned_int;
+            typedef __declspec(align( __alignof(my_double))) int   aligned_int;
         \endcode
         In MS VS, the __declspec(align(N)) construction requires that N must be a integer constant (1, 2, 4 and so on)
         but not an integer constant expression.