Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-uggrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
staging
dune-uggrid
Commits
5d84b7f2
Commit
5d84b7f2
authored
11 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
Add missing keyword 'enum', to make compilation as C work again
parent
2a9b4b8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
low/heaps.c
+2
-2
2 additions, 2 deletions
low/heaps.c
low/heaps.h
+2
-2
2 additions, 2 deletions
low/heaps.h
with
4 additions
and
4 deletions
low/heaps.c
+
2
−
2
View file @
5d84b7f2
...
...
@@ -317,7 +317,7 @@ void NS_PREFIX DisposeHeap (HEAP *theHeap)
*/
/****************************************************************************/
void
*
NS_PREFIX
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
)
void
*
NS_PREFIX
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
enum
HeapAllocMode
mode
)
{
#if UG_USE_SYSTEM_HEAP
return
malloc
(
n
);
...
...
@@ -422,7 +422,7 @@ void *NS_PREFIX GetMem (HEAP *theHeap, MEM n, HeapAllocMode mode)
#endif
}
void
*
NS_PREFIX
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
,
INT
key
)
void
*
NS_PREFIX
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
enum
HeapAllocMode
mode
,
INT
key
)
{
if
(
theHeap
->
type
==
SIMPLE_HEAP
)
{
...
...
This diff is collapsed.
Click to expand it.
low/heaps.h
+
2
−
2
View file @
5d84b7f2
...
...
@@ -213,8 +213,8 @@ INT InitHeaps (void);
/* @{ */
HEAP
*
NewHeap
(
enum
HeapType
type
,
MEM
size
,
void
*
buffer
);
void
DisposeHeap
(
HEAP
*
theHeap
);
void
*
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
);
void
*
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
,
INT
key
);
void
*
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
enum
HeapAllocMode
mode
);
void
*
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
enum
HeapAllocMode
mode
,
INT
key
);
void
DisposeMem
(
HEAP
*
theHeap
,
void
*
buffer
);
void
*
GetFreelistMemory
(
HEAP
*
theHeap
,
INT
size
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment