diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-08-31 21:03:34 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-08-31 21:03:34 +0200 |
commit | 090e460d6f09b5611d34a4867efb6cf46dd44a34 (patch) | |
tree | 28532d04b3b9391d69fbe85b8028febe9331b6ae /src/fq.hpp | |
parent | f5acbb5095901e56a9bfd29b9a8c1c7d3f165ce3 (diff) |
naming cleanup: yarray->array
Diffstat (limited to 'src/fq.hpp')
-rw-r--r-- | src/fq.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ #ifndef __ZMQ_FQ_HPP_INCLUDED__ #define __ZMQ_FQ_HPP_INCLUDED__ -#include "yarray.hpp" +#include "array.hpp" #include "pipe.hpp" namespace zmq @@ -49,7 +49,7 @@ namespace zmq private: // Inbound pipes. - typedef yarray_t <reader_t> pipes_t; + typedef array_t <reader_t> pipes_t; pipes_t pipes; // Number of active pipes. All the active pipes are located at the |