[llvm-commits] [llvm] r155040 - /llvm/trunk/docs/ProgrammersManual.html

Jim Grosbach grosbach at apple.com
Wed Apr 18 13:28:55 PDT 2012


Author: grosbach
Date: Wed Apr 18 15:28:55 2012
New Revision: 155040

URL: http://llvm.org/viewvc/llvm-project?rev=155040&view=rev
Log:
Document that StringMap iteration order is non-deterministic.

Modified:
    llvm/trunk/docs/ProgrammersManual.html

Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=155040&r1=155039&r2=155040&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Wed Apr 18 15:28:55 2012
@@ -1734,6 +1734,9 @@
 
 <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>
 
 <!-- _______________________________________________________________________ -->





More information about the llvm-commits mailing list