diff options
author | Sean Silva <silvas@purdue.edu> | 2013-09-09 19:57:49 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-09-09 19:57:49 +0000 |
commit | 98c64d4dcab1c92dd1f2b55a791beec92923da76 (patch) | |
tree | ef2e54cfabb82c33e54a64dd916ce49dfc704098 /clang/docs | |
parent | fcb46a0deccf8969f13749ae439f9153f84bf92d (diff) | |
download | bcm5719-llvm-98c64d4dcab1c92dd1f2b55a791beec92923da76.tar.gz bcm5719-llvm-98c64d4dcab1c92dd1f2b55a791beec92923da76.zip |
[docs] Prominently note modules are experimental.
It was really hard to tell that modules are experimental. This makes it
really clear by
* Noting the experimental status in the title.
* Moving the "warning" above the table of contents.
llvm-svn: 190340
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/Modules.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/docs/Modules.rst b/clang/docs/Modules.rst index 6ac334db6df..c086644ee3f 100644 --- a/clang/docs/Modules.rst +++ b/clang/docs/Modules.rst @@ -1,14 +1,14 @@ -======= -Modules -======= - -.. contents:: - :local: +====================== +Modules (EXPERIMENTAL) +====================== .. warning:: The functionality described on this page is still experimental! Please try it out and send us bug reports! +.. contents:: + :local: + Introduction ============ Most software is built using a number of software libraries, including libraries supplied by the platform, internal libraries built as part of the software itself to provide structure, and third-party libraries. For each library, one needs to access both its interface (API) and its implementation. In the C family of languages, the interface to a library is accessed by including the appropriate header files(s): |