Displaying 4 results from an estimated 4 matches for "missguiding".
Did you mean:
misguiding
2016 Sep 12
1
Counterintuitive use of LLVMBool in C-API?
Of course, this is normal for C-APIs. But maybe change the name to
LLVMResult to propagate the real use? I am not arguing about the results
themself. They are standard. But the name is missguiding. As long as it's
consistent i know that i have to write an extra record operator in Delphi
to reflect this.
2016-09-12 11:11 GMT+02:00 David Chisnall <David.Chisnall at cl.cam.ac.uk>:
> On 12 Sep 2016, at 09:59, Alexander Benikowski via llvm-dev <
> llvm-dev at lists.llvm.org&g...
2019 Nov 14
1
SASL AUTH with postfix
On 2019-11-14 15:41, Benny Pedersen via dovecot wrote:
> Jorge Bastos via dovecot skrev den 2019-11-14 16:25:
>
>> I've tried to search for the realm part in dovecot but didn't found it,
>> Could you guide me to it?
>
> doveconf -d | grep realm
>
> doveconf -n if more help is needed
Thanks Benny,
It was in my front and didn't saw it.
Now i need to
2017 Sep 18
0
Counterintuitive use of LLVMBool in C-API?
...l" bool)
2016-09-12 11:17 GMT+02:00 Alexander Benikowski <sebal007 at googlemail.com>:
> Of course, this is normal for C-APIs. But maybe change the name to
> LLVMResult to propagate the real use? I am not arguing about the results
> themself. They are standard. But the name is missguiding. As long as it's
> consistent i know that i have to write an extra record operator in Delphi
> to reflect this.
>
> 2016-09-12 11:11 GMT+02:00 David Chisnall <David.Chisnall at cl.cam.ac.uk>:
>
>> On 12 Sep 2016, at 09:59, Alexander Benikowski via llvm-dev <
>&g...
2016 Sep 12
2
Counterintuitive use of LLVMBool in C-API?
Hi,
I stumbled across the following:
> /* Builds a module from the bitcode in the specified memory buffer,
> returning a
> reference to the module via the OutModule parameter. Returns 0 on success.
> */
> LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf,
> LLVMModuleRef *OutModule);
However in most scenarios i know, a Bool is something like
0 = False
!0 = True
In short: