search for: valnam

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

Did you mean: valnum
2013 Jan 31
2
[LLVMdev] std::string suffices for Init* argument?
Hi Jakob, How is `FieldName`, which is a std::string, being passed as the third argument to SetValue on line 1848 of TGParser.cpp, which is declared as being an Init*? The nearly identical (FIXME) codepath in ParseDeclaration immediately puts the string into a StringInit, which makes sense, but how on earth is the std::string being passed in? This is really freaking me out. -- Sean Silva
2013 Jan 31
0
[LLVMdev] std::string suffices for Init* argument?
...n Init*? The nearly identical (FIXME) codepath in > ParseDeclaration immediately puts the string into a StringInit, which > makes sense, but how on earth is the std::string being passed in? This > is really freaking me out. See TGParser.h: bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName, const std::vector<unsigned> &BitList, Init *V); bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName, const std::vector<unsigned> &BitList, Init *V) { return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V);...
2013 Oct 30
1
samba-4.1.0 wont compile- help!
...named 'type' val.type = REG_SZ; ^ In file included from ../source3/include/includes.h:382:0, from ../source3/lib/smbconf/smbconf_reg.c:20: ../source3/lib/smbconf/smbconf_reg.c:229:24: error: 'struct registry_key' has no member named 'key' canon_valname, key->key->name, win_errstr(werr))); ^ ../source3/../lib/util/debug.h:181:20: note: in definition of macro 'DEBUG' && (dbgtext body) ) ^ ../source3/lib/smbconf/smbconf_reg.c: In function 'smbconf_reg_set_multi_sz_value&...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have been applied. These are the tested and updated remainder, addressing the previous comments. 1 Preparatory work. 2-4 The new parser and its documentation. 5-6 Replace old parsers with calls to the new one. 7-8 Two features, one of them essential. 9 Basic test suite for disk string parsing, as adhoc script.