search for: repeatcount

Displaying 3 results from an estimated 3 matches for "repeatcount".

2004 Sep 26
3
What about a higher level configuration language
Hi all. I've been reading through Wi-Ki and at the extensions.conf file description (http://www.voip-info.org/wiki-Asterisk+config+extensions.conf) The author says this: "One day, someone is going to write a proper scripting language for Asterisk that can understand a simpler, easier (and more traditional) scripting syntax. All it would need to do is translate the "high
2011 Mar 19
0
[LLVMdev] [Patch] Fix bug in llvm::SmallVectorIml<>::insert
...like to ask someone to commit it to wherever it fits. Thanks! Hmm, I don't understand the rationale of the return value of the range- insert and repeated-insert. The range-insert returns an iterator pointing exactly at the last value inserted. But the repeated-insert (i.e Insert(Position, RepeatCount, Value)) apparently returns an iterator pointing to the first value inserted. Is this actually intended? My patch is inconsistent with this in mind, because it always returns a pointer to the first value inserted. Please don't apply it yet. We need to clear this up first and fix my patch.
2011 Mar 19
2
[LLVMdev] [Patch] Fix bug in llvm::SmallVectorIml<>::insert
This fixes a bug in SmallVectorImpl<>::insert, which were not behaving correctly on inserting an empty range into an empty vector: #include <llvm/ADT/SmallVector.h> #include <cassert> int main() { llvm::SmallVector<int, 1> v, w; llvm::SmallVector<int, 1>::iterator it = v.insert(v.end(), w.begin(), w.end()); assert(it == v.end()); } The insert function(s)