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 6799f9fa authored by gsell's avatar gsell
Browse files

cleanup: fixed unused parameter in SubFieldIter.h

parent 55e82041
No related branches found
No related tags found
1 merge request!266Resolve "cleanup: make IPPL compile with -Wextra and -Werror"
...@@ -596,7 +596,7 @@ public: ...@@ -596,7 +596,7 @@ public:
return (SingleValPtr == 0 ? SingleValStore : *SingleValPtr); return (SingleValPtr == 0 ? SingleValStore : *SingleValPtr);
} }
T& unit_offset(int) { return offset(0); } T& unit_offset(int) { return offset(0); }
int Stride(int d) { return 0; } int Stride(int /*d*/) { return 0; }
// Compression interface // Compression interface
bool CanCompress() const { return false; } bool CanCompress() const { return false; }
void Compress(T) { } void Compress(T) { }
......
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