<div class="gmail_quote">Hi everybody,<br><br>I just updated to the latest svn trunk version, but now the code does not compile anymore. <br>It trows an error in "f:\dev\llvm\lib\system\Win32/DynamicLibrary.inc(159) : error C2228: left of '.find' must have class/struct/union".<br>

<br><br>Below you can find the small patch which makes the compiler happy again :-)<br>Sincerely yours<br>Marius Wachtler<br><br>----------------------------------------<br><br>Index: lib/System/Win32/DynamicLibrary.inc<br>
===================================================================<br>--- lib/System/Win32/DynamicLibrary.inc    (revision 63322)<br>+++ lib/System/Win32/DynamicLibrary.inc    (working copy)<br>@@ -156,8 +156,8 @@<br> <br>
 void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {<br>   // First check symbols added via AddSymbol().<br>-  std::map<std::string, void *>::iterator I = g_symbols.find(symbolName);<br>-  if (I != g_symbols.end())<br>
+  std::map<std::string, void *>::iterator I = g_symbols().find(symbolName);<br>+  if (I != g_symbols().end())<br>     return I->second;<br> <br>   // Now search the libraries.<br><br><br><br><br><br><br><br><br>
<br><br>
</div><br>