diff options
author | Eric Anholt <[email protected]> | 2014-11-14 12:40:46 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-01-28 16:33:34 -0800 |
commit | d70eb3851753ed7b57c56e4a7fd538857e4385ce (patch) | |
tree | 2f0cf33cb814c832c10b9b2575a8080d1dc47ab9 /src/gallium/auxiliary/util/u_cache.c | |
parent | 7c99187c6a6144cb9fd9d77261c643257246ede7 (diff) |
gallium: Replace u_simple_list.h with util/simple_list.h
The code was exactly the same, except util/ has c++ guards and a struct
simple_node declaration.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_cache.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_cache.c b/src/gallium/auxiliary/util/u_cache.c index 26aab2bf1d4..9395c66f2f8 100644 --- a/src/gallium/auxiliary/util/u_cache.c +++ b/src/gallium/auxiliary/util/u_cache.c @@ -42,7 +42,7 @@ #include "util/u_math.h" #include "util/u_memory.h" #include "util/u_cache.h" -#include "util/u_simple_list.h" +#include "util/simple_list.h" struct util_cache_entry |