Skip to content
Snippets Groups Projects
Commit 4e849aec authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Disabled long int in HeatEquationBuildConfigTag, it was probably only for testing

parent b089f0fe
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ template<> struct ConfigTagReal< HeatEquationBuildConfigTag, long double > { enu
* Turn off support for short int and long int indexing.
*/
template<> struct ConfigTagIndex< HeatEquationBuildConfigTag, short int >{ enum { enabled = false }; };
template<> struct ConfigTagIndex< HeatEquationBuildConfigTag, long int >{ enum { enabled = true }; };
template<> struct ConfigTagIndex< HeatEquationBuildConfigTag, long int >{ enum { enabled = false }; };
/****
* Please, chose your preferred time discretization here.
......
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