diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-04-18 20:28:55 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-04-18 20:28:55 +0000 |
commit | dd9257428da5d02d4b086318cc3c454a2fddf05b (patch) | |
tree | aa795c6178752295701547640d4a33b34d029477 /llvm/docs/ProgrammersManual.html | |
parent | efe653f973181eefd7b6afd8e49a21aef21a7968 (diff) | |
download | bcm5719-llvm-dd9257428da5d02d4b086318cc3c454a2fddf05b.tar.gz bcm5719-llvm-dd9257428da5d02d4b086318cc3c454a2fddf05b.zip |
Document that StringMap iteration order is non-deterministic.
llvm-svn: 155040
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 1a7f215ae0a..267ff922006 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -1734,6 +1734,9 @@ already in the table, and each pair in the map is store in a single allocation <p>StringMap also provides query methods that take byte ranges, so it only ever copies a string if a value is inserted into the table.</p> + +<p>StringMap iteratation order, however, is not guaranteed to be deterministic, +so any uses which require that should instead use a std::map.</p> </div> <!-- _______________________________________________________________________ --> |