Show
Ignore:
Timestamp:
08/31/09 06:04:53 (3 years ago)
Author:
walter
Message:

update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docsrc/ctod.dd

    r1242 r1257  
    670670) 
    671671 
    672        But #pragmas are nonportable both in theory and in practice from  
     672       But $(TT #pragma)s are nonportable both in theory and in practice from  
    673673       compiler to compiler.  
    674674 
    675675<h4>The D Way</h4> 
    676676 
    677        Clearly, since much of the point to setting alignment is for  
    678        portability of data, a portable means of expressing it is necessary.  
     677    $(P D has a syntax for setting the alignment that is common 
     678    to all D compilers. The actual alignment done is compatible 
     679    with the companion C compiler's alignment, for ABI compatibility. 
     680    To match a particular layout across architectures, use 
     681    $(TT align(1)) and manually specify it. 
     682    ) 
    679683 
    680684----------------------------