[modules] Minor documentation clarification for behavior of requires-declaration.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 30 May 2017 23:05:23 +0000 (23:05 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 30 May 2017 23:05:23 +0000 (23:05 +0000)
llvm-svn: 304253

clang/docs/Modules.rst

index b8841c0..7bd2adf 100644 (file)
@@ -403,7 +403,7 @@ A *requires-declaration* specifies the requirements that an importing translatio
   *feature*:
     ``!``:sub:`opt` *identifier*
 
-The requirements clause allows specific modules or submodules to specify that they are only accessible with certain language dialects or on certain platforms. The feature list is a set of identifiers, defined below. If any of the features is not available in a given translation unit, that translation unit shall not import the module. The optional ``!`` indicates that a feature is incompatible with the module.
+The requirements clause allows specific modules or submodules to specify that they are only accessible with certain language dialects or on certain platforms. The feature list is a set of identifiers, defined below. If any of the features is not available in a given translation unit, that translation unit shall not import the module. When building a module for use by a compilation, submodules requiring unavailable features are ignored. The optional ``!`` indicates that a feature is incompatible with the module.
 
 The following features are defined: