view test/mex/bug_51725.c @ 31616:726d2628752c

eliminate unused default_settings variable from resource manager * resource-manager.h, resource-manager.cc (resource_manager::m_default_settings): Delete member variable, accessor function, and all uses.
author John W. Eaton <jwe@octave.org>
date Fri, 02 Dec 2022 10:10:19 -0500
parents e255f09dc70e
children
line wrap: on
line source

#include "mex.h"

void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
  if (nlhs > 0)
    plhs[0] = mxCreateDoubleMatrix (0, 0, mxREAL);

  if (nlhs > 2)
    plhs[2] = mxCreateDoubleMatrix (0, 0, mxREAL);
}