search for: l153

Displaying 4 results from an estimated 4 matches for "l153".

Did you mean: 153
2017 Mar 22
3
arg_iterator missing inc/dec operators
Reid, After your recent redefinition of arg_iterator, it's missing increment/decrement operators (which people typically expect to be defined for iterators). So some external code relying on this is broken. If it's not intentional, would be nice to have it fixed. Specific code that I is broken looks like this: llvm::Function f; foo(--f->arg_end()); // passing the last argument to the
2014 Feb 02
1
Trouble implementing ov_callbacks, endless loop calling seek_func
...sourceFile = (SourceFileImplOggVorbis *)datasource; long pos = sourceFile->mStream->tell(); return pos; } The source file for this code can also be found here<https://github.com/richardeakin/Cinder-Audio2/blob/85126bdddc69110d6ea8bbd982bc11ff20d536d3/src/cinder/audio2/FileOggVorbis.cpp#L153> . Thanks a ton, Rich -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/vorbis/attachments/20140202/3ab2b6af/attachment.htm
2009 Jan 18
3
Interface not supported in mshtml
...410)->({df0b3d60-548f-101b-8e65-08002b2bd119} 0x33c740) interface not supported and dies with an unhandled exception error. This is with both Debian's supplied 1.0.1 and 1.1.13 from http://winehq.org/download/deblenny That call is from http://source.winehq.org/source/dlls/mshtml/htmldoc.c#L153 ; that UUID isn't known in that function, but it's defined at http://source.winehq.org/source/include/oaidl.idl#L1226 I'm currently building 1.1.13 (on my P3...), and I see that the generated include/oaidl.h seems to implement fully ISupportErrorInfo. Am I only missing another elseif...
2017 Mar 22
2
arg_iterator missing inc/dec operators
> The predecrement / decrement operators *do* exist on this iterator: > https://github.com/llvm-mirror/llvm/blob/master/include/ > llvm/ADT/ilist_iterator.h#L153 > > Maybe you meant: > > llvm::Function *f; > foo(&*--f->arg_end()); > > ? > Correct, I mean exactly this. Though &* is not important in this case. This code doesn't work anymore, as arg_iterator is defined differently now: https://github.com/llvm-mirror...