summaryrefslogtreecommitdiff
path: root/docs/Modules.rst
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-03-20 18:37:42 +0000
committerSean Silva <silvas@purdue.edu>2013-03-20 18:37:42 +0000
commitc9fd1867f0610ce2f87094df8ecd1f9ff6593fa0 (patch)
tree3abbc34c29d6b24df327ea2d5ed65a2df890010d /docs/Modules.rst
parent4cc0cf1a54541b26b258c45cd7a3c80c9401eaad (diff)
downloadclang-c9fd1867f0610ce2f87094df8ecd1f9ff6593fa0.tar.gz
clang-c9fd1867f0610ce2f87094df8ecd1f9ff6593fa0.tar.bz2
clang-c9fd1867f0610ce2f87094df8ecd1f9ff6593fa0.tar.xz
[docs] Prominently note that modules are expemental.
And ask for people to try it out and send us bug reports! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Modules.rst')
-rw-r--r--docs/Modules.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/Modules.rst b/docs/Modules.rst
index 9cc5ef8d76..7a9cdc74fd 100644
--- a/docs/Modules.rst
+++ b/docs/Modules.rst
@@ -5,6 +5,10 @@ Modules
.. contents::
:local:
+.. warning::
+ The functionality described on this page is still experimental! Please
+ try it out and send us bug reports!
+
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):