Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 90287c78 authored by kraus's avatar kraus
Browse files

adding missing files...

parent e4d23e10
No related branches found
No related tags found
1 merge request!12Probe peak
#include <map>
#include <string>
namespace Versions {
std::map<unsigned int, std::string> changes;
void fillChanges() {
if (changes.size() > 0) return;
changes.insert({105,
"* The normalization of the 2-dimensional field maps has changed.\n"
" Instead of normalizing with the overall maximum value of longitudinal\n"
" component Opal now uses the maximum value on axis.\n"
"\n"
" The parser has been modified to check the type of all variables. All real \n"
" variables have to be prefixed with the keyword REAL.\n"
});
}
}
\ No newline at end of file
#ifndef CHANGES_H
#define CHANGES_H
#include <map>
#include <string>
namespace Versions {
extern std::map<unsigned int, std::string> changes;
void fillChanges();
}
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment