mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Minor syntax changes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2711 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2626351e2f
commit
b40bdf7957
3 changed files with 6 additions and 3 deletions
|
@ -1,8 +1,11 @@
|
|||
Mon Jan 26 09:10:39 1998 Adam Fedor <fedor@doc.com>
|
||||
|
||||
* NSPage.m (NSRealMemoryAvailable): Add implementation for
|
||||
* src/NSPage.m (NSRealMemoryAvailable): Add implementation for
|
||||
GNU/Linux (Patch from Matt Jenkins <mdj@arcadia.cs.rmit.EDU.AU>).
|
||||
|
||||
* src/Invocation.m (-setArgument:atIndex:): Make argument const.
|
||||
* src/NSInvocation.m (-methodSignature): Make my_sel_type const.
|
||||
|
||||
Sat Jan 24 15:14:50 1998 Masatake Yamato <masata-y@aist-nara.ac.jp>
|
||||
|
||||
* src/include/NSMethodSignature.h(-methodType):
|
||||
|
|
|
@ -439,7 +439,7 @@ my_method_get_next_argument (arglist_t argframe,
|
|||
memcpy (addr, datum, objc_sizeof_type(tmptype));
|
||||
}
|
||||
|
||||
- (void) setArgument:(void *)addr atIndex: (unsigned)i
|
||||
- (void) setArgument:(const void *)addr atIndex: (unsigned)i
|
||||
{
|
||||
const char *tmptype = return_type;
|
||||
void *datum;
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
[self notImplemented: _cmd];
|
||||
#else
|
||||
SEL mysel = [self selector];
|
||||
char * my_sel_type;
|
||||
const char * my_sel_type;
|
||||
if (mysel)
|
||||
{
|
||||
my_sel_type = sel_get_type(mysel);
|
||||
|
|
Loading…
Reference in a new issue