Skip to content
Snippets Groups Projects
Commit 19d28e5d authored by Markus Blatt's avatar Markus Blatt
Browse files

Changed return type from uint32_t to const uint32_t&.

[[Imported from SVN: r158]]
parent 5068948e
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ namespace Dune
* @brief get the local index.
* @return The local index.
*/
inline uint32_t local() const;
inline const uint32_t& local() const;
/**
* @brief Convert to the local index represented by an int.
......@@ -512,7 +512,7 @@ namespace Dune
local_=local;
}
inline uint32_t LocalIndex::local() const {
inline const uint32_t& LocalIndex::local() const {
return localIndex_;
}
......
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