Skip to content

Commit b8dd04d

Browse files
author
ripley
committed
add comments
git-svn-id: https://svn.r-project.org/R/trunk@87333 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent b97a1e7 commit b8dd04d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/include/R_ext/Memory.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* R : A Computer Language for Statistical Data Analysis
3-
* Copyright (C) 1998-2022 The R Core Team
3+
* Copyright (C) 1998-2024 The R Core Team
44
*
55
* This header file is free software; you can redistribute it and/or modify
66
* it under the terms of the GNU Lesser General Public License as published by
@@ -41,8 +41,8 @@
4141
extern "C" {
4242
#endif
4343

44-
void* vmaxget(void);
45-
void vmaxset(const void *);
44+
void* vmaxget(void); // not remapped
45+
void vmaxset(const void *); // not re-mapped
4646

4747
void R_gc(void);
4848
int R_gc_running(void);

src/include/R_ext/Utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ extern "C" {
6060
void R_isort(int*, int);
6161
void R_rsort(double*, int);
6262
void R_csort(Rcomplex*, int);
63-
void rsort_with_index(double *, int *, int);
63+
void rsort_with_index(double *, int *, int); // not remapped.
6464
void revsort(double*, int*, int);/* reverse; sort i[] alongside */
6565
void iPsort(int*, int, int);
6666
void rPsort(double*, int, int);

0 commit comments

Comments
 (0)