Added missing return value and default constructor

This commit is contained in:
2020-08-02 15:01:18 -05:00
parent 66cf91d3a5
commit 0b32783a2c
2 changed files with 8 additions and 0 deletions

View File

@@ -22,6 +22,8 @@ class ProcessQueue
{
public:
ProcessQueue();
ProcessQueue(Process** array);
Process* extractMin();