util: hash: use #pragma once in headers

Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Jonathon Jongsma 2019-06-18 11:12:59 -05:00 committed by Ján Tomko
parent bd4ed5bd99
commit 00eadc38dc
2 changed files with 4 additions and 11 deletions

View File

@ -7,11 +7,9 @@
* Copyright (C) 2000 Bjorn Reese and Daniel Veillard.
*/
#ifndef LIBVIRT_VIRHASH_H
# define LIBVIRT_VIRHASH_H
#pragma once
# include "virautoclean.h"
#include "virautoclean.h"
/*
* The hash table.
@ -198,5 +196,3 @@ void *virHashSearch(const virHashTable *table, virHashSearcher iter,
void virHashValueFree(void *value, const void *name);
VIR_DEFINE_AUTOPTR_FUNC(virHashTable, virHashFree);
#endif /* LIBVIRT_VIRHASH_H */

View File

@ -25,12 +25,9 @@
* clients can be both 64 or 32 bit at the same time.
*/
#ifndef LIBVIRT_VIRHASHCODE_H
# define LIBVIRT_VIRHASHCODE_H
#pragma once
# include "internal.h"
#include "internal.h"
uint32_t virHashCodeGen(const void *key, size_t len, uint32_t seed)
ATTRIBUTE_NOINLINE;
#endif /* LIBVIRT_VIRHASHCODE_H */