This website works better with JavaScript.
Home
Explore
Help
Sign In
kornerr
/
research-portable-memory
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
d
main
Михаил Капелько
7 months ago
parent
a9f19bdf41
commit
2891de43a0
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
gen-C++
+1
-1
language-C++/Memory/src/Memory.Aux.cpp
+ 1
- 0
gen-C++
View File
@@ -1,4 +1,5 @@
c++ -o test_memory_C++ \
-std=c++11 \
-Ilanguage-C++/Memory/src \
language-C++/Memory/src/Memory.Aux.cpp \
language-C++/Memory/src/Memory.Test.cpp \
+ 1
- 1
language-C++/Memory/src/Memory.Aux.cpp
View File
@@ -5,7 +5,7 @@ std::map<int, int> memory_generateConstPlayfield(
int n
) {
std::map<int, int> idGroups;
int
id = 0;
auto
id = 0;
for (int gid = 0; gid < n; ++gid) {
idGroups[id] = gid;
id += 1;
Write
Preview
Loading…
Cancel
Save