Minor warning/error fixes.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@105718 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Symbol/LineTable.cpp b/source/Symbol/LineTable.cpp
index 326fd6e..0539335 100644
--- a/source/Symbol/LineTable.cpp
+++ b/source/Symbol/LineTable.cpp
@@ -12,6 +12,7 @@
 #include "lldb/Core/Stream.h"
 #include "lldb/Symbol/CompileUnit.h"
 #include "lldb/Symbol/LineTable.h"
+#include <algorithm>
 
 using namespace lldb;
 using namespace lldb_private;
@@ -133,13 +134,13 @@
         LT_COMPARE (b.is_terminal_entry, a.is_terminal_entry);
         LT_COMPARE (a.file_idx, b.file_idx);
         return false;
-        #undef LT_COMPARE;
+        #undef LT_COMPARE
     }
 
     const Section *a_section = m_line_table->GetSectionForEntryIndex (a.sect_idx);
     const Section *b_section = m_line_table->GetSectionForEntryIndex (b.sect_idx);
     return Section::Compare(*a_section, *b_section) < 0;
-};
+}
 
 
 Section *