h/murmur: remove unused source file

This commit is contained in:
Danny Robson 2015-06-04 22:18:00 +10:00
parent 244a632647
commit 72797793e9

View File

@ -1,31 +0,0 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
*/
#include "murmur.hpp"
#include "bitwise.hpp"
#include <algorithm>
struct seq {
seq (size_t _count): count (_count) { ; }
struct iter { size_t i; };
iter begin (void) const { return iter {0}; };
iter end (void) const { return iter {count}; };
size_t count;
};