diff options
| author | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
|---|---|---|
| committer | Deepak Panickal <deepak@codeplay.com> | 2014-03-03 15:39:47 +0000 |
| commit | 99fbc07600b16093ac2875a461a1c086ae1db5ee (patch) | |
| tree | caa3aa183d1a4d2acc0021abc38de58c260fb9e7 /lldb/source/Host/windows | |
| parent | 6fa32b6f545477a2d539499cb3c8702c3a47f870 (diff) | |
| download | bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.tar.gz bcm5719-llvm-99fbc07600b16093ac2875a461a1c086ae1db5ee.zip | |
Fix Windows build using portable types for formatting the log outputs
llvm-svn: 202723
Diffstat (limited to 'lldb/source/Host/windows')
| -rw-r--r-- | lldb/source/Host/windows/EditLineWin.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lldb/source/Host/windows/EditLineWin.cpp b/lldb/source/Host/windows/EditLineWin.cpp index 2a6e5263f3f..d3d029d6652 100644 --- a/lldb/source/Host/windows/EditLineWin.cpp +++ b/lldb/source/Host/windows/EditLineWin.cpp @@ -317,8 +317,6 @@ el_set (EditLine *el, int code, ...) clientData = va_arg(vl, void*); } break; -// default: -// assert( !"Not Implemented!" ); } return 0; } @@ -326,7 +324,7 @@ el_set (EditLine *el, int code, ...) void el_end (EditLine *el) { - assert( !"Not implemented!" ); + //assert( !"Not implemented!" ); } void @@ -345,7 +343,6 @@ el_getc (EditLine *, char *) void el_push (EditLine *, const char *) { -// assert( !"Not implemented!" ); } void @@ -398,7 +395,6 @@ el_resize (EditLine *) const LineInfo * el_line (EditLine *el) { - assert( !"Not implemented!" ); return 0; } @@ -425,14 +421,14 @@ history_init (void) void history_end (History *) { - assert( !"Not implemented!" ); +// assert( !"Not implemented!" ); } int history (History *, HistEvent *, int op, ...) { - // perform operation 'op' on the history list with optional argumetns as needed by - // the operation. + // perform operation 'op' on the history list with + // optional arguments as needed by the operation. return 0; } |

