mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
translate: squash warnings
This commit is contained in:
parent
a41b78d107
commit
546ab045d8
2 changed files with 3 additions and 2 deletions
|
|
@ -28,6 +28,7 @@
|
|||
#include "pipe/p_util.h"
|
||||
#include "pipe/p_state.h"
|
||||
#include "translate.h"
|
||||
#include "translate_cache.h"
|
||||
|
||||
#include "cso_cache/cso_cache.h"
|
||||
#include "cso_cache/cso_hash.h"
|
||||
|
|
@ -36,7 +37,7 @@ struct translate_cache {
|
|||
struct cso_hash *hash;
|
||||
};
|
||||
|
||||
struct translate_cache * translate_cache_create()
|
||||
struct translate_cache * translate_cache_create( void )
|
||||
{
|
||||
struct translate_cache *cache = MALLOC_STRUCT(translate_cache);
|
||||
cache->hash = cso_hash_create();
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ struct translate_cache;
|
|||
struct translate_key;
|
||||
struct translate;
|
||||
|
||||
struct translate_cache *translate_cache_create();
|
||||
struct translate_cache *translate_cache_create( void );
|
||||
void translate_cache_destroy(struct translate_cache *cache);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue