Displaying 3 results from an estimated 3 matches for "xsorerr".
Did you mean:
storerr
2016 Dec 18
2
LLD status update and performance chart
...by a library.
If we have to remove all calls to exit, all memory pools and all global
variables I am very opposed to it.
lld is an actual project with actual value for its users. I really don't
want to compromise its maintainability by turning every
for (auto &X : check(...))
into
auto XsOrErr = ...;
if (std::error_code EC = XsOrErr.getError())
return EC; // also update callers. Add more context to the return if
// you don't want to degrade the error message.
auto &Xs = *XsOrErr;
for (auto &X : Xs)
In the name of a theoretical user. Really, can we put this on...
2016 Dec 18
0
LLD status update and performance chart
...;s nothing left to "factor out" from LLD/ELF
itself).
-- Sean Silva
>
> lld is an actual project with actual value for its users. I really don't
> want to compromise its maintainability by turning every
>
> for (auto &X : check(...))
>
> into
>
> auto XsOrErr = ...;
> if (std::error_code EC = XsOrErr.getError())
> return EC; // also update callers. Add more context to the return if
> // you don't want to degrade the error message.
> auto &Xs = *XsOrErr;
> for (auto &X : Xs)
>
> In the name of a theoretical...
2016 Dec 16
0
LLD status update and performance chart
I talked several people and found that this is more like a communication
issue rather than a technical/philosophical issue. I believe communication
problems won't solve themselves. As a person who is on the owners file of
LLD, I think I need to say something about that issue. Also, I guess people
who were just watching this thread wondered why my happy pre-holiday status
report suddenly turned