search for: _increases_

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

2017 Dec 12
3
[cfe-dev] Who wants faster LLVM/Clang builds?
...t; #include "MyClass.h" > with > class MyClass; > then this change is probably desirable in every way: it documents the code > better, it decreases coupling, it improves compile time. > This is not a transform which is clearly "desirable in every way", because it _increases_ coupling between the user of the class and the implementation. The owner of the class can't add optional template arguments, change a class into a typedef, change the namespace, or other such refactorings. It also introduces the possibility of code which changes behavior depending on whether th...
2017 Dec 13
2
[cfe-dev] Who wants faster LLVM/Clang builds?
...>> with >> class MyClass; >> then this change is probably desirable in every way: it documents the >> code better, it decreases coupling, it improves compile time. >> > > This is not a transform which is clearly "desirable in every way", because > it _increases_ coupling between the user of the class and the > implementation. The owner of the class can't add optional template > arguments, change a class into a typedef, change the namespace, or other > such refactorings. It also introduces the possibility of code which changes > behavior dep...
2002 Dec 15
2
modifying comments in place
After looking through the documentation of vorbisfile, it appears that all comments are readonly using that api. I checked the code for vorbiscomment and it appears to it needs to rewrite the entire file when editing comments. Does a description or API of in--place editing and updating of comments exist? Thx. -- --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project
2017 Dec 10
3
[cfe-dev] Who wants faster LLVM/Clang builds?
Hi Michael, On Thu, Dec 7, 2017 at 3:16 AM, Michael Zolotukhin <mzolotukhin at apple.com> wrote: > > Nice to IWYU developers here:) I wonder how hard it would be to run IWYU on > LLVM/Clang (or, if it’s supposed to work, I wonder what I did wrong). There are known problems with running IWYU over LLVM/Clang -- Zachary Turner made an attempt a while back to get it up and running.