This reminds of when the C++ Standards committee decided it would be a good idea to use the symbols <> to delineate templates. Then someone had the smart idea of using a template to fill out a template. So, you end up with
Matrix<Vector<int>> a; Unfortunately, ">>" is the right shift operator, so the compiler declares it a syntax error. The fix (and it's written into the standard) is to introduce a space. You must specify Matrix<Vector<int> > a; Dumb, dumb, dumb. -tk On Wed, Jan 9, 2019 at 3:22 PM Scott Grayban <[email protected]> wrote: > ls -l symlink > > if its a directory make sure you don't use the trailing / > > > On Wednesday, January 9, 2019 at 12:28:48 PM UTC-8, John Clark wrote: >> >> I think I may have accidentally fubared something (you should never play >> with conf files at 4AM) so without just re-installing everything, is there >> a relatively simple way to verify that the symlinks exist, and are >> correctly pointing in the right direction? Can't find a satisfactory answer >> with google. Guess I am not asking the right question in the right way. >> -- >> >> *John Clark, WØAVQ [email protected]* >> > -- > You received this message because you are subscribed to the Google Groups > "weewx-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
