r600/sfn: fix definition of priority queue

Closes #3889

Fixes: b8fdcffc4c
   r600/sfn: Fix vertex stage export to accomodate IO lowering

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7820>
This commit is contained in:
Gert Wollny 2020-11-28 10:27:48 +01:00
parent feaecbeeab
commit 261f42f0c8

View file

@ -52,7 +52,7 @@ protected:
unsigned param_id(unsigned driver_location);
unsigned current_param() const;
private:
std::priority_queue<unsigned, std::vector<int>, std::greater<int> > m_param_driver_locations;
std::priority_queue<unsigned, std::vector<unsigned>, std::greater<unsigned> > m_param_driver_locations;
std::map<unsigned, unsigned> m_param_map;
unsigned m_current_param;
};