Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coenen, Joachim
Frida
Commits
9befe6ab
Commit
9befe6ab
authored
9 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
simplify mem.*: there was no need for overloadeding mem_store
parent
2b55bc7d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pub/lib/mem.cpp
+0
-3
0 additions, 3 deletions
pub/lib/mem.cpp
pub/lib/mem.hpp
+6
-8
6 additions, 8 deletions
pub/lib/mem.hpp
with
6 additions
and
11 deletions
pub/lib/mem.cpp
+
0
−
3
View file @
9befe6ab
...
...
@@ -290,9 +290,6 @@ namespace NOlm {
}
}
void
mem_store
(
POld
fd
,
int
k
)
{
mem_store
(
(
POlo
)
fd
,
k
);
}
void
mem_store
(
POlc
fc
,
int
k
)
{
mem_store
(
(
POlo
)
fc
,
k
);
}
//! Remove selected files from online memory.
void
mem_del
()
{
...
...
This diff is collapsed.
Click to expand it.
pub/lib/mem.hpp
+
6
−
8
View file @
9befe6ab
//**************************************************************************************************
//* FRIDA: fast reliable interactive data analysis
//* (C) Joachim Wuttke 1990-, v2(C++) 2001-
//* http://apps.jcns.fz-juelich.de/frida
//* FRIDA: fast reliable interactive data analysis
//* (C) Joachim Wuttke 1990-, v2(C++) 2001-
//* http://apps.jcns.fz-juelich.de/frida
//**************************************************************************************************
//! \file mem.hpp
...
...
@@ -16,11 +16,9 @@ namespace NOlm {
POld
mem_get_D
(
int
k
);
POlc
mem_get_C
(
int
k
);
int
mem_size
();
// Modify online memory (file selection is changed accordingly):
void
mem_store
(
POlo
olo
,
int
k
=-
1
);
void
mem_store
(
POld
old
,
int
k
=-
1
);
void
mem_store
(
POlc
olc
,
int
k
=-
1
);
void
mem_del
();
void
mem_del
(
int
k
);
void
mem_xchange
();
...
...
@@ -57,12 +55,12 @@ namespace NOlm {
int
size
()
const
;
};
//! Bit values of 'mode' parameter in IterateO constructor.
//! Bit values of 'mode' parameter in IterateO constructor.
const
int
IterALL
=
1
;
///< select all online files
const
int
IterTOL
=
2
;
///< tolerate empty selection
//! Iterate over data files in selection.
class
IterateD
:
public
IterateO
{
class
IterateD
:
public
IterateO
{
public:
POld
operator
()();
int
size
()
const
;
...
...
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