Displaying 3 results from an estimated 3 matches for "aufulli".
Did you mean:
aufully
2009 Feb 19
4
[LLVMdev] Whats GoogleTest ?
What is googletest ?
Its aufully messy warnings wise on Cygwin.
Aaron
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090219/8de0a211/attachment.html>
2009 Feb 19
0
[LLVMdev] Whats GoogleTest ?
> What is googletest ?
Framework for units tests in llvm.
http://code.google.com/p/googletest/
> Its aufully messy warnings wise on Cygwin.
If you have gcc 3.X you are going to get a bunch of warnings. What gcc are
you using?
-Tanya
2012 Sep 14
1
please comment on my function
this function is supposed to canonicalize the language:
--8<---------------cut here---------------start------------->8---
canonicalize.language <- function (s) {
s <- tolower(s)
long <- nchar(s) == 5
s[long] <- sub("^([a-z]{2})[-_][a-z]{2}$","\\1",s[long])
s[nchar(s) != 2 & s != "c"] <- "unknown"
s
}